Initial-Value Problem

Types

Functions

LUSE_ENGR701_704_NumericalMethods.solveMethod
solve(IVP::InitialValueProblem[; method=:forward_euler, tol=10^-3])

Solve IVP according to method ∈ {:forward_euler (default), :backward_euler, :improved_euler, :modified_euler, :runge_kutta}.

Notes

Each method has an equivalent convenience function. E.g. solve(IVP; method=:runge_kutta)runge_kutta(IVP).

source

Index