| OdeIntegratorDIntegrate Method |
Computes the new state x1 at time t1.
Namespace: DigitalRune.Mathematics.AnalysisAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public abstract VectorD Integrate(
VectorD x0,
double t0,
double t1
)
Public MustOverride Function Integrate (
x0 As VectorD,
t0 As Double,
t1 As Double
) As VectorD
public:
virtual VectorD^ Integrate(
VectorD^ x0,
double t0,
double t1
) abstract
abstract Integrate :
x0 : VectorD *
t0 : float *
t1 : float -> VectorD
Parameters
- x0
- Type: DigitalRune.Mathematics.AlgebraVectorD
The state x0 at time t0. - t0
- Type: SystemDouble
The time t0. - t1
- Type: SystemDouble
The target time t1 for which the new state x1 is computed.
Return Value
Type:
VectorDThe new state x1 at time t1.
See Also