|  | RungeKutta5OdeSolver Methods | 
The RungeKutta5OdeSolver type exposes the following members.
 Methods
Methods|  | Name | Description | 
|---|
|  | Solve(FuncDouble, DoubleVector, DoubleVector, DoubleVector, DoubleVector) | Solve the given initial value problem:
            y' = f(t,y)
            The step sequence is determined by timeSpan | 
|  | Solve(FuncDouble, Double, Double, DoubleVector, Double) | Solve the given initial value problem:
            y' = f(t,y)
            The step sequence is determined by timeSpan | 
|  | Solve(FuncDouble, DoubleVector, DoubleVector, DoubleVector, DoubleVector, RungeKutta5OdeSolverOptions) | Solve the given initial value problem:
            y' = f(t,y)
            or
            y' = M(t,y)*f(t,y)
            for problems that involve a mass matrix M.
            The step sequence is determined by timeSpan | 
Top See Also
See Also