 | QRRegressionCalculation Constructor (DoubleMatrix, Double) |
Constructs a QRRegressionCalculation instance from the given matrix. The
specified tolerance is used in computing the numerical rank of
the matrix.
Namespace:
CenterSpace.NMath.Core
Assembly:
NMath (in NMath.dll) Version: 7.3
Syntaxpublic QRRegressionCalculation(
DoubleMatrix A,
double tolerance
)
Public Sub New (
A As DoubleMatrix,
tolerance As Double
)
public:
QRRegressionCalculation(
DoubleMatrix^ A,
double tolerance
)
new :
A : DoubleMatrix *
tolerance : float -> QRRegressionCalculation
Parameters
- A
- Type: CenterSpace.NMath.CoreDoubleMatrix
A matrix. - tolerance
- Type: SystemDouble
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