Click or drag to resize

NonlinearMinimizerBase Constructor

Initializes a new instance of the NonlinearMinimizerBase class.

Namespace: Altaxo.Calc.Optimization
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
protected NonlinearMinimizerBase(
	double gradientTolerance = 1E-18,
	double stepTolerance = 1E-18,
	double functionTolerance = 1E-18,
	int maximumIterations = -1
)

Parameters

gradientTolerance  Double  (Optional)
The stopping threshold for the gradient norm.
stepTolerance  Double  (Optional)
The stopping threshold for the parameter step norm.
functionTolerance  Double  (Optional)
The stopping threshold for the function value.
maximumIterations  Int32  (Optional)
The maximum number of iterations.
See Also