Class RealQR

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

public class RealQR extends RealUnitaryDecomposition

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

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

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