public class BidiagonalDecompositionNaive_FDRM
extends java.lang.Object
BidiagonalDecompositionRow_FDRM
that internally uses
SimpleMatrix and explicitly computes the householder matrices. This was easier to code up and is
used to validate other implementations.Constructor and Description |
---|
BidiagonalDecompositionNaive_FDRM() |
Modifier and Type | Method and Description |
---|---|
protected void |
computeU(int k) |
protected void |
computeV(int k) |
boolean |
decompose(org.ejml.data.FMatrixRMaj A)
Computes the decomposition of the provided matrix.
|
org.ejml.simple.SimpleMatrix |
getB() |
org.ejml.simple.SimpleMatrix |
getU() |
org.ejml.simple.SimpleMatrix |
getV() |
protected void |
init(org.ejml.data.FMatrixRMaj A) |
public org.ejml.simple.SimpleMatrix getU()
public org.ejml.simple.SimpleMatrix getB()
public org.ejml.simple.SimpleMatrix getV()
public boolean decompose(org.ejml.data.FMatrixRMaj A)
A
- The matrix that is being decomposed. Not modified.protected void init(org.ejml.data.FMatrixRMaj A)
protected void computeU(int k)
protected void computeV(int k)