public interface SVD
Modifier and Type | Method and Description |
---|---|
org.apache.commons.math3.linear.RealMatrix |
getPinv()
Get the pseudoinverse as calculated using the SVD
|
double[] |
getSingularValues()
Get the singular values as an array.
|
org.apache.commons.math3.linear.RealMatrix |
getU()
Get the U matrix of a Singular Value Decomposition
U has the property that V.transpose * V = I
Note that U need not be square.
|
org.apache.commons.math3.linear.RealMatrix |
getV()
Get the V matrix of a Singular Value Decomposition.
|
org.apache.commons.math3.linear.RealMatrix getV()
org.apache.commons.math3.linear.RealMatrix getU()
org.apache.commons.math3.linear.RealMatrix getPinv()
double[] getSingularValues()