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

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

Introduction

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

The text is from its open source code.

Constructor

SingularValueDecomposition(Matrix arg)
Constructs and returns a new singular value decomposition object; The decomposed matrices can be retrieved via instance methods of the returned decomposition object.

Method

double[]getSingularValues()
Returns the diagonal of S, which is a one-dimensional array of singular values
MatrixgetU()
Returns the left singular vectors U.
MatrixgetV()
Returns the right singular vectors V.