The second convergence criterion.
Namespace:
Imsl.Math
Assembly:
ImslCS (in ImslCS.dll) Version: 6.5.0.0
Syntax
C# |
---|
public virtual double AbsoluteError { get; set; } |
Visual Basic (Declaration) |
---|
Public Overridable Property AbsoluteError As Double |
Visual C++ |
---|
public: virtual property double AbsoluteError { double get (); void set (double value); } |
Field Value
A double value specifying the second convergence criterion. A root is accepted if the absolute value of the function at the point is less than or equal to AbsoluteError. AbsoluteError must be greater than or equal to 0.0.Default: AbsoluteError = 2.22e-14
Remarks
The second criterion accepts a root if the root is known to be inside
an interval of length at most AbsoluteError.