Euler method
Applies to: general, python, fortran
The Euler method advances a differential equation with one slope estimate per step. It is simple but low accuracy.
y = y + dt * f(t, y)
See also: runge-kutta
Applies to: general, python, fortran
The Euler method advances a differential equation with one slope estimate per step. It is simple but low accuracy.
y = y + dt * f(t, y)
See also: runge-kutta