Rev 47914 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/base/man/qr.Rd% Part of the R package, http://www.R-project.org% Copyright 1995-2007 R Core Development Team% Distributed under GPL 2 or later\name{qr}\alias{qr}\alias{qr.default}\alias{qr.coef}\alias{qr.qy}\alias{qr.qty}\alias{qr.resid}\alias{qr.fitted}\alias{qr.solve}\alias{is.qr}\alias{as.qr}\alias{solve.qr}\title{The QR Decomposition of a Matrix}\usage{qr(x, \dots)\method{qr}{default}(x, tol = 1e-07 , LAPACK = FALSE, \dots)qr.coef(qr, y)qr.qy(qr, y)qr.qty(qr, y)qr.resid(qr, y)qr.fitted(qr, y, k = qr$rank)qr.solve(a, b, tol = 1e-7)\method{solve}{qr}(a, b, \dots)is.qr(x)as.qr(x)}\arguments{\item{x}{a matrix whose QR decomposition is to be computed.}\item{tol}{the tolerance for detecting linear dependencies in thecolumns of \code{x}. Only used if \code{LAPACK} is false and\code{x} is real.}\item{qr}{a QR decomposition of the type computed by \code{qr}.}\item{y, b}{a vector or matrix of right-hand sides of equations.}\item{a}{a QR decomposition or (\code{qr.solve} only) a rectangular matrix.}\item{k}{effective rank.}\item{LAPACK}{logical. For real \code{x}, if true use LAPACKotherwise use LINPACK.}\item{\dots}{further arguments passed to or from other methods}}\description{\code{qr} computes the QR decomposition of a matrix. It provides aninterface to the techniques used in the LINPACK routine DQRDCor the LAPACK routines DGEQP3 and (for complex matrices) ZGEQP3.}\details{The QR decomposition plays an important role in manystatistical techniques. In particular it can be used to solve theequation \eqn{\bold{Ax} = \bold{b}} for given matrix \eqn{\bold{A}},and vector \eqn{\bold{b}}. It is useful for computing regressioncoefficients and in applying the Newton-Raphson algorithm.The functions \code{qr.coef}, \code{qr.resid}, and \code{qr.fitted}return the coefficients, residuals and fitted values obtained whenfitting \code{y} to the matrix with QR decomposition \code{qr}.(If pivoting is used, some of the coefficients will be \code{NA}.)\code{qr.qy} and \code{qr.qty} return \code{Q \%*\% y} and\code{t(Q) \%*\% y}, where \code{Q} is the (complete) \eqn{\bold{Q}} matrix.All the above functions keep \code{dimnames} (and \code{names}) of\code{x} and \code{y} if there are.\code{solve.qr} is the method for \code{\link{solve}} for \code{qr} objects.\code{qr.solve} solves systems of equations via the QR decomposition:if \code{a} is a QR decomposition it is the same as \code{solve.qr},but if \code{a} is a rectangular matrix the QR decomposition iscomputed first. Either will handle over- and under-determinedsystems, providing a least-squares fit if appropriate.\code{is.qr} returns \code{TRUE} if \code{x} is a \code{\link{list}}with components named \code{qr}, \code{rank} and \code{qraux} and\code{FALSE} otherwise.It is not possible to coerce objects to mode \code{"qr"}. Objectseither are QR decompositions or they are not.}\value{The QR decomposition of the matrix as computed by LINPACK or LAPACK.The components in the returned value correspond directlyto the values returned by DQRDC/DGEQP3/ZGEQP3.\item{qr}{a matrix with the same dimensions as \code{x}.The upper triangle contains the \eqn{\bold{R}} of the decompositionand the lower triangle contains information on the \eqn{\bold{Q}} ofthe decomposition (stored in compact form). Note that the storageused by DQRDC and DGEQP3 differs.}\item{qraux}{a vector of length \code{ncol(x)} which containsadditional information on \eqn{\bold{Q}}.}\item{rank}{the rank of \code{x} as computed by the decomposition:always full rank in the LAPACK case.}\item{pivot}{information on the pivoting strategy used duringthe decomposition.}Non-complex QR objects computed by LAPACK have the attribute\code{"useLAPACK"} with value \code{TRUE}.}\note{To compute the determinant of a matrix (do you \emph{really} need it?),the QR decomposition is much more efficient than using Eigen values(\code{\link{eigen}}). See \code{\link{det}}.Using LAPACK (including in the complex case) uses column pivoting anddoes not attempt to detect rank-deficient matrices.}\references{Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988)\emph{The New S Language}.Wadsworth & Brooks/Cole.Dongarra, J. J., Bunch, J. R., Moler, C. B. and Stewart, G. W. (1978)\emph{LINPACK Users Guide.} Philadelphia: SIAM Publications.Anderson. E. and ten others (1999)\emph{LAPACK Users' Guide}. Third Edition. SIAM.\crAvailable on-line at\url{http://www.netlib.org/lapack/lug/lapack_lug.html}.}\seealso{\code{\link{qr.Q}}, \code{\link{qr.R}}, \code{\link{qr.X}} forreconstruction of the matrices.\code{\link{lm.fit}}, \code{\link{lsfit}},\code{\link{eigen}}, \code{\link{svd}}.\code{\link{det}} (using \code{qr}) to compute the determinant of a matrix.}\examples{hilbert <- function(n) { i <- 1:n; 1 / outer(i - 1, i, "+") }h9 <- hilbert(9); h9qr(h9)$rank #--> only 7qrh9 <- qr(h9, tol = 1e-10)qrh9$rank #--> 9##-- Solve linear equation system H \%*\% x = y :y <- 1:9/10x <- qr.solve(h9, y, tol = 1e-10) # or equivalently :x <- qr.coef(qrh9, y) #-- is == but much better than#-- solve(h9) \%*\% yh9 \%*\% x # = y## overdetermined systemA <- matrix(runif(12), 4)b <- 1:4qr.solve(A, b) # or solve(qr(A), b)solve(qr(A, LAPACK=TRUE), b)# this is a least-squares solution, cf. lm(b ~ 0 + A)## underdetermined systemA <- matrix(runif(12), 3)b <- 1:3qr.solve(A, b)solve(qr(A, LAPACK=TRUE), b)# solutions will have one zero, not necessarily the same one}\keyword{algebra}\keyword{array}