|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
A class of objects that compute the eigenvalue factorization of a matrix.
Field Summary | |
static java.lang.String |
CVS_REVISION
|
Method Summary | |
EigenvalueDecomposition |
decompose(Matrix matrix)
public behavior pre matrix != null; pre matrix.getNbRows() = matrix.getNbColumns(); pre (* matrix is not singular *); post \result != null; post (* \result.Q().times(\result.lambda()).equals(matrix) *); post (* (\forall int i; i>=1 && i<= matrix.getNbRows(); \result.Q().times(\result.getEigenvector(i)).equals(\result.getEigenvector(i).times(\result.getEigenvalue(i))) *); post \result.Q().getNbRows() == matrix.getNbRows(); post \result.Q().getNbColumns() == matrix.getNbColumns(); |
Field Detail |
public static final java.lang.String CVS_REVISION
Method Detail |
public EigenvalueDecomposition decompose(Matrix matrix)
Return an eigenvalue 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 |