This class computes the QR factorization of a general m by n FloatMatrix
.
Copyright (c) 2003-2004, dnAnalytics Project. All rights reserved. See http://www.dnAnalytics.net for details.
Adopted to Altaxo (c) 2005 Dr. Dirk Lellinger.
Constructor | Description | ||
|
Constructor for QR decomposition class. The constructor performs the factorization and the upper and
lower matrices are accessible by the
|
Instance member | Description | ||||
Full Usage:
this.GetDeterminant
Returns: float32
the determinant of the matrix.
|
Calculates the determinant (absolute value) of the matrix.
|
||||
Full Usage:
this.IsFullRank
Returns: bool
|
Determine whether the matrix is full rank or not
|
||||
|
Returns the orthogonal Q matrix.
|
||||
|
Returns the upper triangular factor R.
|
||||
Full Usage:
this.Solve
Parameters:
IROMatrix<float32>
-
A matrix with as many rows as A and any number of columns.
Returns: FloatMatrix
X that minimizes the two norm of Q*R*X-B .
|
Finds the least squares solution of
|