Question about calling user defined function to another script
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
N/A
el 27 de Oct. de 2022
Comentada: Stephen23
el 27 de Oct. de 2022
hello
first here is my user_defined_function code.(name is A_execute1.m)
function A=A_execute1(r)
global V;
A=pi*r*(sqrt(r^2+((9*V^2)/(pi^2*r^4))));
end
second, this is the script file(i made) that i want to call A_execute1 file to.
(to draw graph to see)
r=[-100:0.01:100];
V=10;
fminbnd('A_execute1',-100, 100)
plot(r,A_execute1(r)), xlabel('r'), ylabel('A')
grid
but it says error that
Error using fminbnd (line 237)
User supplied objective function must return a scalar
value.
Error in test4 (line 3)
fminbnd('A_execute1',-100, 100)
why it says that error?
i think i designed scalar value, not vector.
1 comentario
Stephen23
el 27 de Oct. de 2022
Do not use global variablesto pass parameter values, use the methods shown here: https://www.mathworks.com/help/matlab/math/parameterizing-functions.html
Respuesta aceptada
Matt J
el 27 de Oct. de 2022
Editada: Matt J
el 27 de Oct. de 2022
It returns empty.
%r=[-100:0.01:100];
V=10;
A_execute1(-100)
[r,fval]=fminbnd(@(r) A_execute2(r,V),-100,100)
function A=A_execute1(r)
global V;
A=pi*r*(sqrt(r^2+((9*V^2)/(pi^2*r^4))));
end
function A=A_execute2(r,V)
A=pi*r*(sqrt(r^2+((9*V^2)/(pi^2*r^4))));
end
Más respuestas (0)
Ver también
Categorías
Más información sobre 2-D and 3-D Plots 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!