Class ComplexQR

java.lang.Object
All Implemented Interfaces:
Decomposition<CMatrix>

public class ComplexQR extends ComplexUnitaryDecomposition

Instances of this class compute the QR decomposition of a complex dense matrix.

The QR decomposition, decomposes a matrix A into a unitary matrix Q and an upper triangular matrix R such that A=QR.

Much of this code has been adapted from the EJML library.