|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectno.uib.cipr.matrix.QL
public class QL
Computes QL decompositions
Constructor Summary | |
---|---|
QL(int m,
int n)
Constructs an empty QL decomposition |
Method Summary | |
---|---|
QL |
factor(DenseMatrix A)
Computes an orthogonal decomposition |
static QL |
factorize(Matrix A)
Convenience method to compute a QL decomposition |
LowerTriangDenseMatrix |
getL()
Returns the lower triangular factor |
DenseMatrix |
getQ()
Returns the orthogonal part of the factorization |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public QL(int m, int n)
m
- Number of rows. Must be larger than or equal the number of
columnsn
- Number of columnsMethod Detail |
---|
public static QL factorize(Matrix A)
A
- Matrix to decompose. Not modified
public QL factor(DenseMatrix A)
A
- Matrix to decompose. Overwritten on exit. Pass a copy to avoid
this
public LowerTriangDenseMatrix getL()
public DenseMatrix getQ()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |