Java org.apache.commons.math.linear SingularValueDecomposition fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.math.linear SingularValueDecomposition fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.math.linear SingularValueDecomposition.

The text is from its open source code.

Implementation

org.apache.commons.math.linear.SingularValueDecomposition has the following implementations.
Click this link to see all its implementation.

Method

doublegetConditionNumber()
Return the condition number of the matrix.
doublegetNorm()
Returns the L2 norm of the matrix.
intgetRank()
Return the effective numerical matrix rank.
RealMatrixgetS()
Returns the diagonal matrix Σ of the decomposition.
double[]getSingularValues()
Returns the diagonal elements of the matrix Σ of the decomposition.
DecompositionSolvergetSolver()
Get a solver for finding the A × X = B solution in least square sense.
RealMatrixgetU()
Returns the matrix U of the decomposition.
RealMatrixgetUT()
Returns the transpose of the matrix U of the decomposition.
RealMatrixgetV()
Returns the matrix V of the decomposition.
RealMatrixgetVT()
Returns the transpose of the matrix V of the decomposition.