|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use EigenDecomposition | |
|---|---|
| org.ejml.alg.dense.decomposition | |
| org.ejml.alg.dense.decomposition.eig | |
| org.ejml.ops | |
| org.ejml.simple | |
| Uses of EigenDecomposition in org.ejml.alg.dense.decomposition |
|---|
| Methods in org.ejml.alg.dense.decomposition that return EigenDecomposition | |
|---|---|
static EigenDecomposition<DenseMatrix64F> |
DecompositionFactory.eig(int matrixWidth)
Returns a new eigenvalue decomposition. |
static EigenDecomposition<DenseMatrix64F> |
DecompositionFactory.eig(int matrixWidth,
boolean needVectors)
Same as DecompositionFactory.eig(int) but can turn on and off computing eigen vectors |
static EigenDecomposition<DenseMatrix64F> |
DecompositionFactory.eigGeneral(int matrixSize,
boolean computeVectors)
Creates a new EigenDecomposition that will work with any matrix. |
static EigenDecomposition<DenseMatrix64F> |
DecompositionFactory.eigSymm(int matrixWidth,
boolean computeVectors)
Creates a new EigenDecomposition that will only work with symmetric matrices. |
| Methods in org.ejml.alg.dense.decomposition with parameters of type EigenDecomposition | |
|---|---|
static double |
DecompositionFactory.quality(DenseMatrix64F orig,
EigenDecomposition<DenseMatrix64F> eig)
Computes a metric which measures the the quality of an eigen value decomposition. |
| Uses of EigenDecomposition in org.ejml.alg.dense.decomposition.eig |
|---|
| Classes in org.ejml.alg.dense.decomposition.eig that implement EigenDecomposition | |
|---|---|
class |
SwitchingEigenDecomposition
Checks to see what type of matrix is being decomposed and calls different eigenvalue decomposition algorithms depending on the results. |
class |
SymmetricQRAlgorithmDecomposition
Computes the eigenvalues and eigenvectors of a real symmetric matrix using the symmetric implicit QR algorithm. |
class |
WatchedDoubleStepQRDecomposition
Finds the eigenvalue decomposition of an arbitrary square matrix using the implicit double-step QR algorithm. |
| Uses of EigenDecomposition in org.ejml.ops |
|---|
| Methods in org.ejml.ops with parameters of type EigenDecomposition | |
|---|---|
static DenseMatrix64F |
EigenOps.createMatrixD(EigenDecomposition eig)
A diagonal matrix where real diagonal element contains a real eigenvalue. |
static DenseMatrix64F |
EigenOps.createMatrixV(EigenDecomposition<DenseMatrix64F> eig)
Puts all the real eigenvectors into the columns of a matrix. |
| Uses of EigenDecomposition in org.ejml.simple |
|---|
| Methods in org.ejml.simple that return EigenDecomposition | |
|---|---|
EigenDecomposition |
SimpleEVD.getEVD()
Returns the underlying decomposition that this is a wrapper around. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||