Uses of Class
elki.math.linearalgebra.pca.EigenPair
-
Packages that use EigenPair Package Description elki.math.linearalgebra.pca Principal Component Analysis (PCA) and eigenvector processing. -
-
Uses of EigenPair in elki.math.linearalgebra.pca
Fields in elki.math.linearalgebra.pca declared as EigenPair Modifier and Type Field Description private EigenPair[]
PCAResult. eigenPairs
The eigenpairs in decreasing order.Methods in elki.math.linearalgebra.pca that return EigenPair Modifier and Type Method Description EigenPair[]
PCAResult. getEigenPairs()
Returns the eigenpairs of the object to which this PCA belongs to in decreasing order.private static EigenPair[]
PCAResult. processDecomposition(EigenvalueDecomposition evd)
Convert an eigenvalue decomposition into EigenPair objects.Methods in elki.math.linearalgebra.pca with parameters of type EigenPair Modifier and Type Method Description int
EigenPair. compareTo(EigenPair o)
Compares this object with the specified object for order.Constructors in elki.math.linearalgebra.pca with parameters of type EigenPair Constructor Description PCAFilteredResult(EigenPair[] eigenPairs, int numstrong, double big, double small)
Construct a result object for the filtered PCA result.PCAResult(EigenPair[] eigenPairs)
Build a PCA result from an existing set of EigenPairs.
-