Click or drag to resize

NewtonRaphsonParameterCalc(Double) Constructor

Constructs a NewtonRaphsonParameterCalc object with the given tolerance. A default value of 1000 is used for the maximum number of iterations.

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

Parameters

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