Stiff Systems of Ordinary Differential Equations

A "stiff" ODE is a system in which, when expressed in the form y = A x, the matrix A is nearly singular. Under these conditions, rkfixed may oscillate or be unstable.

Radau(init, x1, x2, npoints, D) Uses the RADAU5 method.
Stiffb(init, x1, x2, npoints, D, J)
Uses the Bulirsch-Stoer method.
Stiffr(init, x1, x2, npoints, D, J)
Uses Rosenbrock method.

Each of these functions returns a matrix in which the first column contains the npoints between x1 and x2 at which the solution to the ODE is evaluated. Subsequent columns contain the corresponding values of the solution(s) to the nth-order ODE(s), and the n − 1 derivatives of the solution(s). Either a single ODE or a system of ODE equations is allowed.

Arguments:

Notes:

QuickSheet

Related Topics