qrDecomposition method

  1. @override
List<RealMatrix> 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<RealMatrix> qrDecomposition() =>
    QRDecompositionReal(matrix: this).decompose();