Gets or sets the relative tolerance used in the
convergence test.
Namespace:
Extreme.Mathematics.Algorithms
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public double RelativeTolerance { get; set; }
Public Property RelativeTolerance As Double
Get
Set
public:
property double RelativeTolerance {
double get ();
void set (double value);
}
member RelativeTolerance : float with get, set
Property Value
Type:
DoubleA real number greater than or equal to zero.
The relative error is the ratio of the
absolute value of the difference between the computed
and the actual result to the absolute value of
the result. The relative tolerance specifies the
largest value of the ratio that is allowed.
This property is ignored when
ConvergenceCriterion is equal to
WithinAbsoluteTolerance.
Reference