Interface SingularValueDecomposition_F32<T extends Matrix>
- All Superinterfaces:
 DecompositionInterface<T>,SingularValueDecomposition<T>
- All Known Implementing Classes:
 SafeSvd_FDRM,SvdImplicitQrDecompose_FDRM,SvdImplicitQrDecompose_MT_FDRM
public interface SingularValueDecomposition_F32<T extends Matrix>
extends SingularValueDecomposition<T>
Implementation of SingularValueDecomposition for 32-bit floats.
 
- 
Method Summary
Methods inherited from interface org.ejml.interfaces.decomposition.DecompositionInterface
decompose, inputModifiedMethods inherited from interface org.ejml.interfaces.decomposition.SingularValueDecomposition
getU, getV, getW, isCompact, numberOfSingularValues, numCols, numRows 
- 
Method Details
- 
getSingularValues
float[] 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.
 
 
 -