Click or drag to resize

ModifiedLevenbergMarquardtMinimizer(Int32, Double) Constructor

Constructs a ModifiedLevenbergMarquardtMinimizer object from the given information.

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

Parameters

maxIterations  Int32
The maximum number of iterations to perform when minimizing.
gradientTolerance  Double
Iteration will stop ||Jk'*Fk|| is less than gradientTolerance, where Jk is value of the Jacobian at the kth iterate and Fk is the value of the objective function at the kth iterate.
See Also