MinUnconDerivTolerance Property |
The derivative tolerance used by member method ComputeMin to
decide if the current point is a local minimum.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public double DerivTolerance { get; set; }
Public Property DerivTolerance As Double
Get
Set
public:
property double DerivTolerance {
double get ();
void set (double value);
}
member DerivTolerance : float with get, set
Property Value
Type:
Double
A
double scalar value specifying the derivative tolerance used
by member method
ComputeMin.
Remarks
This is the second stopping criterion. x is returned as a
solution when G(x) is less than or equal to
DerivTolerance. DerivTolerance should be nonnegative,
otherwise zero will be used. By default, DerivTolerance is set
to 1.0e-8.
See Also