calling a c file to use ode45
Mostrar comentarios más antiguos
I am trying to call a c file that hold a derivative function. I want to call it with ode45, or something similar.
1 comentario
James Tursa
el 2 de Ag. de 2024
Have you ever written a mex function before? What does the derivative function C signature look like?
Respuestas (1)
Steven Lord
el 31 de Jul. de 2024
0 votos
You can pass a function handle to a MEX-file that you've created from a C or C++ file into ode45 as long as the signature of that MEX-file matches the signature ode45 requires its ODE function (the first input) to have. See the description of the odefun input argument on the ode45 documentation page.
"The function dydt = odefun(t,y), for a scalar t and a column vector y, must return a column vector dydt of data type single or double that corresponds to f(t,y). odefun must accept both input arguments t and y, even if one of the arguments is not used in the function."
Categorías
Más información sobre Ordinary Differential Equations en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!