singleValueDecomposition method

  1. @override
List<ComplexMatrix> 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<ComplexMatrix> singleValueDecomposition() {
  return SVDComplex(
    complexMatrix: this,
  ).decompose();
}