Click or drag to resize

NewtonRaphsonParameterCalc(Int32, Double, Boolean) 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,
	bool failIfNotFullRank
)

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.
failIfNotFullRank  Boolean
If true parameter calculation will fail if the matrix of subject data, X, input to the CalculateParameters method does not have full rank. If false parameter calculation will succeed if X is rank deficient, however the solution will not be unique and some parameter statistics may be undefined.
See Also