Hello,
I am reading a research paper in which a certain algorithm involves the QR Decomposition. This QR decomposition is different from the Matlab version: In Matlab, [B,C] = qr(Matrix of size n x u) returns B => u x u orthogonal matrix and C => n x u upper triangular matrix. The QR Decomposition in the research paper, however, is different. Here, [B,C] = qr(Matrix of size n x u) returns B => n x u matrix of orthogonal columns and C => u x u sized upper triangular matrix.
How can I use Matlab to produce the second type of QR decomp?
Thanks
I am reading a research paper in which a certain algorithm involves the QR Decomposition. This QR decomposition is different from the Matlab version: In Matlab, [B,C] = qr(Matrix of size n x u) returns B => u x u orthogonal matrix and C => n x u upper triangular matrix. The QR Decomposition in the research paper, however, is different. Here, [B,C] = qr(Matrix of size n x u) returns B => n x u matrix of orthogonal columns and C => u x u sized upper triangular matrix.
How can I use Matlab to produce the second type of QR decomp?
Thanks