Click or drag to resize

LevenbergMarquardtMinimizer(Int32, Double, Double) Constructor

Constructs a LevenbergMarquardtMinimizer object from the given information.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public LevenbergMarquardtMinimizer(
	int maxIterations,
	double gradientTolerance,
	double solutionDeltaTolerance
)

Parameters

maxIterations  Int32
The maximum number of iterations to perform when minimizing.
gradientTolerance  Double
Iteration will stop when the infinity norm of the gradient used in calculating the next step falls below this value.
solutionDeltaTolerance  Double
Iteration will stop when the L2 norm of the step size falls below this value.
See Also