org.ejml.alg.dense.decomposition.bidiagonal
Class BidiagonalDecompositionNaive_D64
- java.lang.Object
-
- org.ejml.alg.dense.decomposition.bidiagonal.BidiagonalDecompositionNaive_D64
-
public class BidiagonalDecompositionNaive_D64 extends java.lang.ObjectA slower but much simpler version ofBidiagonalDecompositionRow_D64that internally uses SimpleMatrix and explicitly computes the householder matrices. This was easier to code up and is used to validate other implementations.
-
-
Constructor Summary
Constructors Constructor and Description BidiagonalDecompositionNaive_D64()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description booleandecompose(DenseMatrix64F A)Computes the decomposition of the provided matrix.SimpleMatrixgetB()SimpleMatrixgetU()SimpleMatrixgetV()
-
-
-
Method Detail
-
getU
public SimpleMatrix getU()
-
getB
public SimpleMatrix getB()
-
getV
public SimpleMatrix getV()
-
decompose
public boolean decompose(DenseMatrix64F A)
Computes the decomposition of the provided matrix. If no errors are detected then true is returned, false otherwise.- Parameters:
A- The matrix that is being decomposed. Not modified.- Returns:
- If it detects any errors or not.
-
-
DMelt 3.0 © DataMelt by jWork.ORG