ZerosFunctionAbsoluteError Property |
The second convergence criterion.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public virtual double AbsoluteError { get; set; }
Public Overridable Property AbsoluteError As Double
Get
Set
public:
virtual property double AbsoluteError {
double get ();
void set (double value);
}
abstract AbsoluteError : float with get, set
override AbsoluteError : float with get, set
Property Value
Type:
Double
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.
See Also