Gets or sets a value specifying the criterion that is
to be used in the convergence test for the algorithm.
Namespace:
Extreme.Mathematics.Algorithms
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public ConvergenceCriterion ConvergenceCriterion { get; set; }
Public Property ConvergenceCriterion As ConvergenceCriterion
Get
Set
public:
property ConvergenceCriterion ConvergenceCriterion {
ConvergenceCriterion get ();
void set (ConvergenceCriterion value);
}
member ConvergenceCriterion : ConvergenceCriterion with get, set
Property Value
Type:
ConvergenceCriterionOne of the
ConvergenceCriterion
values.
The desired accuracy of an iterative algorithm is specified
by the ConvergenceCriterion property and
Tolerance. The convergence criterion specifies
how the accuracy should be measured.
The possible values for this property
are as follows:
Value | Description |
---|
WithinAbsoluteTolerance | The absolute error of the result should be within the specified tolerance. |
WithinRelativeTolerance | The relative error should be within the specified tolerance. |
WithinAnyTolerance | Either the absolute or the relative error should be within the specified tolerance. |
NumberOfIterations |
Convergence should be expected at the specified number of
iterations. The estimated error is ignored.
|
Reference