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

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -