singleValueDecomposition abstract method

List<Matrix<T>> singleValueDecomposition()

Computes the E, U and V matrices of the SVD (Single Value Decomposition) algorithm. In particular, this method returns the following matrices:

The returned list contains E at index 0, U at index 1 and V at index 2.

Implementation

List<Matrix<T>> singleValueDecomposition();