Hello, I would like to know if there is any command to perform the production of a function in Python. I'm creating a function to make the production of another function.
def fx(a, v, t):
return ( (t[3]/exp(t[2]-(t[1]/v)))*(a/exp(t[2]-(t[1]/v)))^(t[3]-1)*exp(-(a/exp(t[2]-(t[1]/v)))^t[3]) )
def L(x, v, t):
return (numpy.prod(fx(a=A,v=V,t)) )