ZerosFunctionMullerTolerance Property |
Tolerance used during refinement to determine if Müllers method is
started.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public virtual double MullerTolerance { get; set; }
Public Overridable Property MullerTolerance As Double
Get
Set
public:
virtual property double MullerTolerance {
double get ();
void set (double value);
}
abstract MullerTolerance : float with get, set
override MullerTolerance : float with get, set
Property Value
Type:
Double
A
double containing the tolerance used
during refinement to determine when the Müller's method is used.
Default: MullerTolerance = 1.0e-8/AbsoluteError
Remarks
Müller's method is started if, during refinement, a point is found for
which the absolute value of the function is less than MullerTolerance
and the point is not near an already discovered root. If MullerTolerance
is less than or equal to zero, Müller's method is never used.
See Also