Enum for specifying the order of the Runge-Kutta method.

Namespace:  CenterSpace.NMath.Analysis
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public enum SolverOrder
Visual Basic (Declaration)
Public Enumeration SolverOrder
Visual C++
public enum class SolverOrder

Members

Member nameDescription
First
The first order Runge-Kutta method. Also known as the Euler method.
Second
The second order Runge-Kutta method.
Fourth
The fourth order Runge-Kutta method.

See Also