|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Object | +--org.jutil.math.matrix.HouseholderQRDecomposition
This class represents a HouseHolder QR factorization of a matrix.
| Specifications inherited from interface QRDecomposition |
| public invariant Q().getNbColumns() == R().getNbRows(); |
| Field Summary | |
static java.lang.String |
CVS_REVISION
|
| Constructor Summary | |
HouseholderQRDecomposition(Matrix R,
Column[] vs)
Initialize a new HouseholderQRDecomposition combination with the given R matrix and v vectors. |
|
| Method Summary | |
Column |
getV(int i)
Return the i-th v vector as computed by the Householder algorithm that computed this QR decomposition. |
Matrix |
Q()
See superclass |
Matrix |
Qreduced()
See superclass |
Column |
QreducedTimes(Column column)
See superclass |
Column |
QreducedTransposeTimes(Column column)
See superclass |
Column |
Qtimes(Column column)
See superclass |
Column |
QtransposeTimes(Column column)
See superclass |
Matrix |
R()
See superclass |
Matrix |
Rreduced()
See superclass |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
public static final java.lang.String CVS_REVISION
| Constructor Detail |
public HouseholderQRDecomposition(Matrix R,
Column[] vs)
R - The R matrix of the QR factorizationvs - An array of v vectors produce by the HouseHolder factorization
The first vector of the algorithm is at position -, the last
vector is at position vs.length - 1| Method Detail |
public Matrix R()
public Column getV(int i)
Return the i-th v vector as computed by the Householder algorithm that computed this QR decomposition.
i - The index of the requested v vector. Indices start from 1.
public Matrix Q()
public Matrix Qreduced()
public Matrix Rreduced()
public Column Qtimes(Column column)
public Column QreducedTimes(Column column)
public Column QtransposeTimes(Column column)
public Column QreducedTransposeTimes(Column column)
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||