|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.commons.math.linear.QRDecompositionImpl
public class QRDecompositionImpl
Calculates the QR-decomposition of a matrix. In the QR-decomposition of a matrix A consists of two matrices Q and R that satisfy: A = QR, Q is orthogonal (QTQ = I), and R is upper triangular. If A is m×n, Q is m×m and R m×n.
Implemented using Householder reflectors.
| Constructor Summary | |
|---|---|
QRDecompositionImpl(RealMatrix matrix)
Calculates the QR decomposition of the given matrix. |
|
| Method Summary | |
|---|---|
RealMatrix |
getQ()
Returns the matrix Q of the QR-decomposition. |
RealMatrix |
getR()
Returns the matrix R of the QR-decomposition. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public QRDecompositionImpl(RealMatrix matrix)
matrix - The matrix to decompose.| Method Detail |
|---|
public RealMatrix getR()
getR in interface QRDecompositionpublic RealMatrix getQ()
getQ in interface QRDecomposition
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||