qrDecomposition abstract method

List<Matrix<T>> qrDecomposition()

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

List<Matrix<T>> qrDecomposition();