|
BoundedBroydenFletcherGoldfarbShannoGradientTolerance Property
|
Gets or sets a tolerance value when detecting convergence
of the gradient vector steps. Default is 0.
Namespace:
Accord.Math.Optimization
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public double GradientTolerance { get; set; }
Public Property GradientTolerance As Double
Get
Set
Request Example
View SourceProperty Value
Type:
DoubleRemarks
On entry pgtol >= 0 is specified by the user. The iteration
will stop when
max{|proj g_i | i = 1, ..., n} <= pgtol
where pg_i is the ith component of the projected gradient.
See Also