Click or drag to resize
Accord.NET (logo)

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; }
Request Example View Source

Property Value

Type: Double
Remarks
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