2
Hi, I was wondering if there are any commands to perform the production of a function in Python. I’m creating a function to make the product 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)) )
Thank you very much!
– user20273