ConvergenceTest<T>.AbsoluteTolerance Property

Gets or sets the absolute tolerance used in the convergence test.

Definition

Namespace: Extreme.Mathematics.Algorithms
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public T AbsoluteTolerance { get; set; }

Property Value

T
A real number greater than or equal to zero.

Remarks

The absolute error is the absolute value of the difference between the computed and the actual result. The absolute tolerance specifies the largest value of the ratio that is allowed.

This property is ignored when ConvergenceCriterion is equal to WithinRelativeeTolerance.

Exceptions

ArgumentOutOfRangeExceptionThe specified tolerance is less than zero or equal to NaN

See Also