Error with anonymous call: Undefined function "times" for function_handle
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Martin Nors Pedersen
el 30 de Oct. de 2013
Editada: Martin Nors Pedersen
el 30 de Oct. de 2013
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 comentarios
Walter Roberson
el 30 de Oct. de 2013
If I copy and paste that into R2013b then I do not get an error.
Respuestas (0)
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!