OdeIntegrator.IntegrateSingleStep Method

Performs one step of the numerical integration in the direction of the final time.

Definition

Namespace: Extreme.Mathematics.Calculus.OrdinaryDifferentialEquations
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Vector<double> IntegrateSingleStep(
	double finalTime
)

Parameters

finalTime  Double
The time value that specifies the direction of integration relative the the current time.

Return Value

Vector<Double>
The value after one full step of the integration in the direction of finalTime.

Remarks

Use the CurrentTime property to determine the time corresponding to this value.

See Also