I want to make a lambda function of x such that takes the maximum between the results of all lambda functions in a list for that given x.
Any ideas on how to make this functional for any size of list?
a = lambda(x): someprocess0(x)
b = lambda(x): someprocess1(x)
c = lambda(x): someprocess2(x)
funcList = [a, b, c]
function = lambda(x): max(funcList[0](x), funcList[1](x), funcList[2](x))