singleValueDecomposition method

  1. @override
List<RealMatrix> singleValueDecomposition()
override

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

@override
List<RealMatrix> singleValueDecomposition() =>
    SVDReal(matrix: this).decompose();