Click or drag to resize

RungeKutta45OdeSolver Methods

The RungeKutta45OdeSolver type exposes the following members.

Methods
 NameDescription
Public methodSolve(FuncDouble, DoubleVector, DoubleVector, DoubleVector, DoubleVector) Solves the given initial value problem of ordinary differential equation of the form y' = f(t,y)
Public methodSolve(FuncDouble, Double, Double, DoubleVector, Double) Solves the given initial value problem of ordinary differential equation of the form y' = f(t,y) using default solver options.
Public methodSolve(FuncDouble, DoubleVector, DoubleVector, DoubleVector, DoubleVector, RungeKutta45OdeSolverOptions) Solves initial value problem of ordinary differential equations. This function solves of equations of the form y' = f(t,y). If the equations involve a mass matrix, either constant of time and state dependent, it must be specified using the solverOptions parameter. The mass matrix must be nonsigular.
Public methodSolve(FuncDouble, Double, Double, DoubleVector, Double, RungeKutta45OdeSolverOptions) Solves the given initial value problem of ordinary differential equation of the form y' = f(t,y) or y' = M(t,y)*f(t,y) for problems that involve a mass matrix M.
Top
See Also