Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
function whose argument is a string containing name of respective function.
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have simple question:
function m=forexample('hey')
Above, 'hey' is string containing name of the respective function. How can I evaluate respective function 'hey' in main function? They say, function feval might be useful, but i dont know how to use it...
1 comentario
Stephen23
el 14 de Nov. de 2018
As an alternative, function handles are reccomended for passing functions as arguments:
Respuestas (1)
James Tursa
el 14 de Nov. de 2018
Editada: Stephen23
el 14 de Nov. de 2018
E.g.,
>> sind(30)
ans =
0.5000
>> s = 'sind';
>> feval(s,30)
ans =
0.5000
So, if you pass an argument into your forexample function, simply use that argument as the first argument to feval.
0 comentarios
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!