Is it possible to improve speed in ODE solvers from matlab? (ode45 ode15s etc) -
i wrote code solve system using ode45 , ode15s in matlab. wondering if can improve speed of code using multiple core (or parallel code) in script.
anyone have tried ??
thanks
no, can't.
all numerical integrators, ode45
, friends included, use form of iterative scheme solve user-implemented (coupled) non-linear (partial) differential equations.
each new step in iterative schemes of ode45/15s/..
(to compute new state of system) depends on previous step (the old state of system), therefore, these numerical integrators cannot parallelized effectively.
the speedup can that's have big impact optimize implementation of differential equation.
Comments
Post a Comment