| RungeKutta4IntegratorFIntegrate 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 override VectorF Integrate(
VectorF x0,
float t0,
float t1
)
Public Overrides Function Integrate (
x0 As VectorF,
t0 As Single,
t1 As Single
) As VectorF
public:
virtual VectorF^ Integrate(
VectorF^ x0,
float t0,
float t1
) override
abstract Integrate :
x0 : VectorF *
t0 : float32 *
t1 : float32 -> VectorF
override Integrate :
x0 : VectorF *
t0 : float32 *
t1 : float32 -> VectorF
Parameters
- x0
- Type: DigitalRune.Mathematics.AlgebraVectorF
The state x0 at time t0. - t0
- Type: SystemSingle
The time t0. - t1
- Type: SystemSingle
The target time t1 for which the new state x1 is computed.
Return Value
Type:
VectorFThe new state x1 at time t1.
See Also