Interface SingularValueDecomposition_F64<T extends Matrix>
-
- All Superinterfaces:
DecompositionInterface<T>,SingularValueDecomposition<T>
public interface SingularValueDecomposition_F64<T extends Matrix> extends SingularValueDecomposition<T>
Implementation of
SingularValueDecompositionfor 64-bit floats.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double[]getSingularValues()Returns the singular values.-
Methods inherited from interface org.ejml.interfaces.decomposition.DecompositionInterface
decompose, inputModified
-
Methods inherited from interface org.ejml.interfaces.decomposition.SingularValueDecomposition
getU, getV, getW, isCompact, numberOfSingularValues, numCols, numRows
-
-
-
-
Method Detail
-
getSingularValues
double[] getSingularValues()
Returns the singular values. This is the diagonal elements of the W matrix in the decomposition. Ordering of singular values is not guaranteed..- Returns:
- Singular values. Note this array can be longer than the number of singular values. Extra elements have no meaning.
-
-