CvodeIntegrator.SetTolerances Method

Definition

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

Overload List

SetTolerances(Double, Vector<Double>) Sets the absolute and relative tolerances for the integration.
SetTolerances(Double, Double) Sets the absolute and relative tolerances for the integration.

SetTolerances(Double, Vector<Double>)

Sets the absolute and relative tolerances for the integration.
C#
public void SetTolerances(
	double relativeTolerance,
	Vector<double> absoluteTolerance
)

Parameters

relativeTolerance  Double
The relative tolerance.
absoluteTolerance  Vector<Double>
A vector containing the absolute tolerance for each component.

SetTolerances(Double, Double)

Sets the absolute and relative tolerances for the integration.
C#
public void SetTolerances(
	double relativeTolerance,
	double absoluteTolerance
)

Parameters

relativeTolerance  Double
The relative tolerance.
absoluteTolerance  Double
The absolute tolerance.

See Also