solveODE
solveODE(func, tspan, y0)
solveODE(func, tspan, y0, options)
Numerical Integration of Ordinary Differential Equations.
Try it yourself:
$1 | f(t,y) = y
| |
$2 | tspan = [0, 4]
| |
$3 | solveODE(f, tspan, 1)
| |
$4 | solveODE(f, tspan, [1, 2])
| |
$5 | solveODE(f, tspan, 1, { method:"RK23", maxStep:0.1 })
|
See also:
All functions