Expand description
Adams-Bashforth 2-step explicit multistep method.
Requires a bootstrap step (computed with RK4) to start.
y_{n+1} = y_n + (h/2)(3·f(x_n, y_n) - f(x_{n-1}, y_{n-1}))Local truncation error: O(h³), global: O(h²).
Functions§
- solve
- Solve an IVP using the 2-step Adams-Bashforth method.