Constructs a QRRegressionCalculation instance from the given matrix. The specified tolerance is used in computing the numerical rank of the matrix.

Namespace: CenterSpace.NMath.Stats
Assembly: NMathStatsPremium (in NMathStatsPremium.dll) Version: 3.6.0.0

Syntax

C#
public QRRegressionCalculation(
	DoubleMatrix A,
	double tolerance
)
Visual Basic
Public Sub New ( _
	A As DoubleMatrix, _
	tolerance As Double _
)
Visual C++
public:
QRRegressionCalculation(
	DoubleMatrix^ A, 
	double tolerance
)

Parameters

A
Type: CenterSpace.NMath.Core..::..DoubleMatrix
A matrix.
tolerance
Type: System..::..Double
Tolerance for computing the numerical rank of the matrix A. 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