OdeIntegrator.Restart Method

Definition

Namespace: Numerics.NET.Calculus.OrdinaryDifferentialEquations
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

Restart() Resets the integrator so the next integration will start from the initial conditions.
Restart(Double, Vector<Double>) Resets the integrator so the next integration will start from the specified initial conditions.

Restart

Resets the integrator so the next integration will start from the initial conditions.
C#
public void Restart()

Restart(Double, Vector<Double>)

Resets the integrator so the next integration will start from the specified initial conditions.
C#
public void Restart(
	double initialTime,
	Vector<double> initialValue
)

Parameters

initialTime  Double
The initial time.
initialValue  Vector<Double>
A vector that specifies the initial solution.

See Also