What interpolation algorithm does the ODE45 function in MATLAB use to evaluate the outputs at the time steps specified in the "tspan" input?
Show older comments
The syntax of the ODE45 function is as follows:
[T,Y] = solver(odefun,tspan,y0)
If I specify the "tspan" input with more than two elements, the solver uses interpolation to evaluate and return the output at each intermediate time steps. I would like to know what interpolation algorithm does the ODE45 function use in this process.
Accepted Answer
More Answers (0)
Categories
Find more on Ordinary Differential Equations in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!