Gets and sets the tolerance used for computing the numerical rank of the regression matrix.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public double Tolerance { get; set; }
Visual Basic (Declaration)
Public Property Tolerance As Double
Visual C++
public:
property double Tolerance {
	double get ();
	void set (double value);
}

Remarks

If A = QR is the QR factorization of A, then elements on the main diagonal of R are considered to be zero if their absolute value is less than or equal to Tolerance.

See Also