|
Template Numerical Library version\ main:d08c4decc
|
Namespace for Matlab aliases for ODE solvers. More...
Typedefs | |
| template<typename Value = double> | |
| using | ode1 = Euler< Value > |
| First order Euler method also known as ode1. | |
| template<typename Value = double> | |
| using | ode2 = Heun2< Value > |
| Second order Heun method also known as ode2 from Matlab with adaptive step size. | |
| template<typename Value = double> | |
| using | ode23 = BogackiShampin< Value > |
| Third order Bogacki-Shampin method also known as ode23 from Matlab with adaptive step size. | |
| template<typename Value = double> | |
| using | ode45 = DormandPrince< Value > |
| Fifth order Dormand-Prince method also known as ode45 from Matlab with adaptive step size. | |
Namespace for Matlab aliases for ODE solvers.
| using TNL::Solvers::ODE::Methods::Matlab::ode1 = Euler< Value > |
First order Euler method also known as ode1.
| Value | is arithmetic type used for computations. |
| using TNL::Solvers::ODE::Methods::Matlab::ode2 = Heun2< Value > |
| using TNL::Solvers::ODE::Methods::Matlab::ode23 = BogackiShampin< Value > |
Third order Bogacki-Shampin method also known as ode23 from Matlab with adaptive step size.
| Value | is arithmetic type used for computations. |
| using TNL::Solvers::ODE::Methods::Matlab::ode45 = DormandPrince< Value > |
Fifth order Dormand-Prince method also known as ode45 from Matlab with adaptive step size.
| Value | is arithmetic type used for computations. |