Hey,
I've already made a similar discussion, but since I do not get any answers there, I decided to start a new one with more details. Please apologize that.
I have the function
El[k_ , l_, d_] := k * l / (0.25*d^2*Pi)
and defined the gaussian variance formula
Eld [k_, l_, d_, kd_, ld_, dd_] :=
Sqrt[kd (Derivative[1, 0, 0][El])^2 +
ld (Derivative[1, 0, 0][El])^2 + dd (Derivative[1, 0, 0][El])^2]
It works pretty well for El... El[1,2,3] (just some random numbers for the variables to try it out) gives me 0.282942.
However, Eld[1, 2, 3, 4, 5, 6] doesn't work, which makes sense because Eld can't give k,l and d to El. However, I need to first derivate the function by hand (or wolfram alpha) and then write the full code into Eld. Do you know how to solve this issue?
Thank you,
Tobias