[Q,R] = qr(X)[Q,R,E] = qr(X)A = qr(X)
qr performs the orthogonal-triangular decomposition of a matrix. This factorization is useful for both square and rectangular matrices. It expresses the matrix as the product of a real orthonormal or complex unitary matrix and an upper triangular matrix.
[Q,R] = qr(X) produces an upper triangular matrix R of the same dimension as X and a unitary matrix Q so that X = Q*R.
[Q,R,E] = qr(X) produces a permutation matrix E, an upper triangular matrix R with decreasing diagonal elements, and a unitary matrix Q so that X*E = Q*R.
A = qr(X) returns the output of the LINPACK subroutine ZQRDC. triu(qr(X)) is R.
This is a rank-deficient matrix; the middle column is the average of the other two columns. The rank deficiency is revealed by the factorization:A =1 2 34 5 67 8 910 11 12
The triangular structure of[Q,R] = qr(A)Q =-0.0776 -0.8331 0.5444 0.0605-0.3105 -0.4512 -0.7709 0.3251-0.5433 -0.0694 -0.0913 -0.8317-0.7762 0.3124 0.3178 0.4461R =-12.8841 -14.5916 -16.29920 -1.0413 -2.08260 0 0.00000 0 0
R gives it zeros below the diagonal; the zero on the diagonal in R(3,3) implies that R, and consequently A, does not have full rank.The QR factorization is used to solve linear systems with more equations than unknowns. For example
The linear system Ax = b represents four equations in only three unknowns. The best solution in a least squares sense is computed byb =1357
x = A\b
which produces
The quantityWarning: Rank deficient,rank = 2,tol = 1.4594E-014x =0.50000.00000.1667
tol is a tolerance used in deciding that a diagonal element of R is negligible. If [Q,R,E] = qr(A), then
The solutiontol = max(size(A))*eps*abs(R(1,1))
x was computed using the factorization and the two steps
The computed solution can be checked by forming Ax. This equals b to within roundoff error, which indicates that even though the simultaneous equations Ax = b are overdetermined and rank deficient, they happen to be consistent. There are infinitely many solution vectorsy = Q'*b;x = R\y
x; the QR factorization has found just one of them.
qr uses the LINPACK routines ZQRDC and ZQRSL. ZQRDC computes the QR decomposition, while ZQRSL applies the decomposition.
\,/,lu,null,orth,qrdelete,qrinsert
(c) Copyright 1994 by The MathWorks, Inc.