smart function to switch functions

Suppose I want to tune different ode solvers to run:
ode23(@fun,...)
I want to use 'odesolver' so that
odesolver(@fun,...) actually runs ode23(@fun,...) when specifying odesolver=='ode23' and runs ode45(@fun,...) when specifying odesolver=='ode45'. Is there a smart way to do it?

 Respuesta aceptada

Stephen23
Stephen23 el 28 de Abr. de 2024
Editada: Stephen23 el 28 de Abr. de 2024
You could use STR2FUNC:
str = 'ode23';
odesolver = str2func(str);
odesolver(@fun,..)
or simply use FEVAL:
feval(str,@fun,..)

Más respuestas (2)

Anton Kogios
Anton Kogios el 28 de Abr. de 2024
You could set up a function with a switch statement, something like:
function odesolver(@fun,odesolverStr)
switch odesolverStr
case 'ode23'
ode23(@fun)
case 'ode45'
ode45(@fun)
otherwise
error('Incorrect ode solver specified.')
end
end

1 comentario

feynman feynman
feynman feynman el 28 de Abr. de 2024
Thank you very much. But I accepted the answer that is shorter

Iniciar sesión para comentar.

Steven Lord
Steven Lord el 29 de Abr. de 2024

0 votos

If you're using a sufficiently recent release (release R2023b or later) use the ode object and specify the Solver property to tell the object which ODE solver to use.

3 comentarios

feynman feynman
feynman feynman el 29 de Abr. de 2024
Thank you so much for this comment. I see that SelectedSolver seems to be chosen automatically according to different ODEs? If so, is this automatic selection also in older matlab versions?
Steven Lord
Steven Lord el 29 de Abr. de 2024
The ode object was introduced in release R2023b. It doesn't exist in earlier releases. There isn't a way to "automatically have MATLAB decide which ODE solver to call" in earlier releases.
feynman feynman
feynman feynman el 30 de Abr. de 2024
thank you

Iniciar sesión para comentar.

Etiquetas

Preguntada:

el 28 de Abr. de 2024

Comentada:

el 30 de Abr. de 2024

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by