jsci.maths.linalg
Class SingularValueDecomposition

java.lang.Object
  extended by jsci.maths.linalg.SingularValueDecomposition

public class SingularValueDecomposition
extends java.lang.Object


Constructor Summary
SingularValueDecomposition(DoubleMatrix<? extends DoubleArray2D,? extends DoubleArray1D> matrix)
           
 
Method Summary
 DoubleMatrix<DoubleArray2D,DoubleArray1D> getS()
           
 DoubleMatrix<DoubleArray2D,DoubleArray1D> getU()
           
 DoubleMatrix<DoubleArray2D,DoubleArray1D> getV()
           
 void singularValueDecompose(DoubleMatrix<? extends DoubleArray2D,? extends DoubleArray1D> matrix)
          Returns the singular value decomposition of this matrix.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SingularValueDecomposition

public SingularValueDecomposition(DoubleMatrix<? extends DoubleArray2D,? extends DoubleArray1D> matrix)
Method Detail

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).