Click or drag to resize

VariableOrderOdeSolverSolutionYtype Class

Data structor contianing solution values and statistics for an ODE solve.
Inheritance Hierarchy
SystemObject
  CenterSpace.NMath.CoreVariableOrderOdeSolverSolutionYtype

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public class Solution<Ytype>

Type Parameters

Ytype
The type of the state vector for the ODE being solved. If a system of differential equations are being solved Ytype is a DoubleMatrix. If it is a single differential equation being solved Ytype is a DoubleVector.

The VariableOrderOdeSolverSolutionYtype type exposes the following members.

Constructors
 NameDescription
Public methodVariableOrderOdeSolverSolutionYtypeInitializes a new instance of the VariableOrderOdeSolverSolutionYtype class
Top
Properties
 NameDescription
Public propertyNumFailedSteps Gets the number of falied integration steps during the calculation.
Public propertyNumFunctionEvaluations Gets the number of times the ODE function was evaluated.
Public propertyNumSuccessfulSteps gets the number of successful integration steps during the calculation.
Public propertyT Gets the time values for the solution.
Public propertyY Gets the state values for the solution.
Top
See Also