qrDecomposition method

  1. @override
List<ComplexMatrix> qrDecomposition()
override

Computes the Q and R matrices of the QR decomposition algorithm. In particular, this method returns the Q and R matrices of the

  • A = Q x R

relation. The returned list contains Q at index 0 and R at index 1.

Implementation

@override
List<ComplexMatrix> qrDecomposition() {
  return QRDecompositionComplex(
    complexMatrix: this,
  ).decompose();
}