Reputation: 49
Can I find ode solvers (ode23, ode45, and ode113) in Scilab? I use these solvers in MATLAB, but I have no idea if there is the same option in Scilab or not. Thanks in advance.
Upvotes: 1
Views: 268
Reputation: 25992
Did you try the search function? The answer in Convert ode45() to scilab should give an idea, even if RKF is not DoPri5.
Read the documentation on the other available steppers.
There exist more modern solvers and step-size heuristics, using dense output, an advanced event "root->action" mechanism etc. Scilab is not alone in having a stalled development in this regard. The default is good enough for small projects and prototyping, for massive number-crunching use a compiled language.
Upvotes: 1