|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
A class of objects that compute the QR factorization of a matrix.
Field Summary | |
static java.lang.String |
CVS_REVISION
|
Method Summary | |
QRDecomposition |
decompose(Matrix matrix)
public behavior pre matrix != null; pre matrix.getNbRows() >= matrix.getNbColumns(); post \result != null; post (* \result.Q().times(\result.R()).equals(matrix) *); post \result.R().getNbRows() == matrix.getNbRows(); post \result.R().getNbColumns() == matrix.getNbColumns(); |
Field Detail |
public static final java.lang.String CVS_REVISION
Method Detail |
public QRDecomposition decompose(Matrix matrix)
Return a QR factorization of this matrix.
matrix
- The matrix to decompose.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |