#include <jama_qr.h>
Public Methods | |
QR (const TNT::Array2D< Real > &A) | |
int | isFullRank () const |
TNT::Array2D<Real> | getHouseholder (void) const |
TNT::Array2D<Real> | getR () const |
TNT::Array2D<Real> | getQ () const |
TNT::Array1D<Real> | solve (const TNT::Array1D< Real > &b) const |
TNT::Array2D<Real> | solve (const TNT::Array2D< Real > &B) const |
Classical QR Decompisition: for an m-by-n matrix A with m >= n, the QR decomposition is an m-by-n orthogonal matrix Q and an n-by-n upper triangular matrix R so that A = Q*R.
The QR decompostion always exists, even if the matrix does not have full rank, so the constructor will never fail. The primary use of the QR decomposition is in the least squares solution of nonsquare systems of simultaneous linear equations. This will fail if isFullRank() returns 0 (false).
The Q and R factors can be retrived via the getQ() and getR() methods. Furthermore, a solve() method is provided to find the least squares solution of Ax=b using the QR factors.
(Adapted from JAMA, a Java Matrix Library, developed by jointly by the Mathworks and NIST; see http://math.nist.gov/javanumerics/jama).
|
Create a QR factorization object for A.
|
|
Retreive the Householder vectors from QR factorization
|
|
Generate and return the (economy-sized) orthogonal factor
|
|
Return the upper triangular factor, R, of the QR factorization
|
|
Flag to denote the matrix is of full rank.
|
|
Least squares solution of A*X = B
|
|
Least squares solution of A*x = b
|