Expand description
Runge-Kutta solver methods (Butcher tableaux).
Structs§
- Solver
- An ODE solver method defined by its Butcher tableau.
Functions§
- bs32
- Bogacki-Shampine 3(2) method.
- euler
- Forward Euler method (1st order, fixed step).
- heun
- Heun’s method / improved Euler (2nd order).
- midpoint
- Midpoint method (2nd order).
- rk4
- Classic 4th order Runge-Kutta (fixed step).
- rk45
- Dormand-Prince 5(4) Runge-Kutta solver (MATLAB’s ode45).
- tsit5
- Tsitouras 5/4 Runge-Kutta solver.