Performs one step of the numerical integration in the direction of the final time.
Namespace:
Extreme.Mathematics.Calculus.OrdinaryDifferentialEquations
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Vector<double> IntegrateSingleStep(
double finalTime
)
Public Function IntegrateSingleStep (
finalTime As Double
) As Vector(Of Double)
public:
Vector<double>^ IntegrateSingleStep(
double finalTime
)
member IntegrateSingleStep :
finalTime : float -> Vector<float>
Parameters
- finalTime
- Type: SystemDouble
The time value that specifies the direction of integration relative the the current time.
Return Value
Type:
VectorDoubleThe value after one full step of the integration in the direction of
finalTime.
Use the CurrentTime property to determine the time corresponding to this value.
Reference