Tolerance used during refinement to determine if Müllers method is
started.
Namespace:
Imsl.Math
Assembly:
ImslCS (in ImslCS.dll) Version: 6.5.0.0
Syntax
C# |
---|
public virtual double MullerTolerance { get; set; } |
Visual Basic (Declaration) |
---|
Public Overridable Property MullerTolerance As Double |
Visual C++ |
---|
public: virtual property double MullerTolerance { double get (); void set (double value); } |
Field Value
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.