Error with anonymous call: Undefined function "times" for function_handle
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello everyone
i have a quite long formula which i have attempted to split up into two separate functions. I would then like to call the first function within the second function when i integrate the second function - but i run in to the error message shown below:
Undefined function 'times' for input arguments of type
'function_handle'.
i have googled and can see that many have been given this type of problem when they forget to add the variable in the function call. but as far as i can see, i call the function correct and still get the error - can anyone see what i am doing wrong? any help or suggestion would be greatly appreciated.
My code is shown below:
R = 5;
epsR = 25;
eps = epsR/R;
Qrange = 0.01:0.001:2;
Rdot = @(x) R.*sqrt(sin(x).^2+eps^2.*cos(x).^2);
fun_P = @(y) ((3.*sin(Qrange.*Rdot(y))-3.*...(Qrange.*Rdot(y)).*cos(Qrange.*Rdot(y)))./(Qrange.*Rdot(y).^3)).^2.*sin(y);
P_elip = integral(fun_P,0,pi/2,'ArrayValued',1);
as you can see, i make sure to use Rdot(y) and not just Rdot in my code. i have checked the Rdot function and i works fine e.g. Rdot(1) = 14.1476.
ps. i know i use more parenthesis than i strictly have to, but the help keep track of the different terms. i hope it is not too unclear
2 Kommentare
Antworten (0)
Siehe auch
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!