Final-Value Ordinary Differential Equation Solvers

These functions are deprecated. Please use or switch to the uppercase ODE solvers or an ODE solve block. We expect to support these functions only for the next two versions of Mathcad.

The properties of each of these solvers are the same as the corresponding uppercase functions, but they calculate fewer values of the solution. Instead of specifying the number of points in the result, specify the level of accuracy, and allow the functions to generate a solution at the required number of points along the interval.

bulstoer(init, x1, x2, acc, D, kmax, s) Smooth systems using the Bulirsch-Stoer method.
rkadapt(init, x1, x2, acc, D, kmax, s) Fourth-order Runge-Kutta with adaptive step size.

stiffb(init, x1, x2, acc, D, J, kmax, s) uses the Bulirsch-Stoer method for stiff systems.
stiffr(init, x1, x2, acc, D, J, kmax, s) uses the Rosenbrock method for stiff systems.
radau(init, x1, x2, acc, D, kmax, s) uses the RADAU5 method for stiff systems.

Each of these functions returns a matrix in which the first column contains, at minimum, x1 and x2, and 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).

Arguments:

Notes: