Performs multiple steps of the numerical integration at least as far as the specified final time.
Namespace:
Extreme.Mathematics.Calculus.OrdinaryDifferentialEquations
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Vector<double> IntegrateMultipleSteps(
double finalTime
)
Public Function IntegrateMultipleSteps (
finalTime As Double
) As Vector(Of Double)
public:
Vector<double>^ IntegrateMultipleSteps(
double finalTime
)
member IntegrateMultipleSteps :
finalTime : float -> Vector<float>
Parameters
- finalTime
- Type: SystemDouble
The time value where integration should stop.
Return Value
Type:
VectorDoubleThe value at the first grid point at or past the time value specified by
finalTime.
Use the CurrentTime property to determine the time corresponding to this value.
Reference