Click or drag to resize

RungeKutta5OdeSolverOptions Class

User settable options for RungeKutta5OdeSolver.
Inheritance Hierarchy
SystemObject
  CenterSpace.NMath.CoreRungeKutta5OdeSolverOptions

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public class Options

The RungeKutta5OdeSolverOptions type exposes the following members.

Constructors
 NameDescription
Public methodRungeKutta5OdeSolverOptions Constructs an empty Options intance.
Top
Properties
 NameDescription
Public propertyMassMatrix For problems of the form M*y' = F(t,y) sets and gets the value of the constant mass matrix M.
Public propertyMassMatrixFunction For problems of the form M(t,y)*y' = F(t,y) sets and gets the value of the time-state dependent mass matrix function M(t,y).
Public propertyOutputFunction The output function to be called by the ODE solver at each integration step. If this function returns true the solver continues with the next step, if it returns false the solver is halted.
Top
See Also