Click or drag to resize

NewtonRaphsonParameterCalc(Int32, Double) Constructor

Constructs a NewtonRaphsonParameterCalc object with the given maximum number of iterations and tolerance.

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

Parameters

maxIterations  Int32
The maximum number of iterations to perform.
tolerance  Double
Tolerance used to determine convergence. The algorithm is judged converged when the norm of the solution change is less than Tolerance * max(B), where max(B) is the magnitude of the largest solution component.
See Also