jsci.maths.linalg
Class SingularValueDecomposition
java.lang.Object
jsci.maths.linalg.SingularValueDecomposition
public class SingularValueDecomposition
- extends java.lang.Object
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
SingularValueDecomposition
public SingularValueDecomposition(DoubleMatrix<? extends DoubleArray2D,? extends DoubleArray1D> matrix)
getU
public DoubleMatrix<DoubleArray2D,DoubleArray1D> getU()
getS
public DoubleMatrix<DoubleArray2D,DoubleArray1D> getS()
getV
public DoubleMatrix<DoubleArray2D,DoubleArray1D> getV()
singularValueDecompose
public void singularValueDecompose(DoubleMatrix<? extends DoubleArray2D,? extends DoubleArray1D> matrix)
- Returns the singular value decomposition of this matrix.
Based on the code from JAMA (public domain).