Skip to content

Commit f47f867

Browse files
author
maechler
committed
fix PR#18670 + a typo
git-svn-id: https://svn.r-project.org/R/trunk@87346 00db46b3-68df-0310-9c12-caf00c1e9a41
1 parent 64a959b commit f47f867

File tree

1 file changed

+5
-3
lines changed
  • src/library/base/man

1 file changed

+5
-3
lines changed

src/library/base/man/qr.Rd

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
% File src/library/base/man/qr.Rd
22
% Part of the R package, https://www.R-project.org
3-
% Copyright 1995-2016 R Core Team
3+
% Copyright 1995-2024 R Core Team
44
% Distributed under GPL 2 or later
55

66
\name{qr}
@@ -105,8 +105,10 @@ as.qr(x)
105105
and the lower triangle contains information on the \eqn{\bold{Q}} of
106106
the decomposition (stored in compact form). Note that the storage
107107
used by \I{DQRDC} (LINPACK) and \I{DGEQP3} (LAPACK) differs.}
108-
\item{qraux}{a vector of length \code{ncol(x)} which contains
108+
\item{qraux}{a vector of length \code{ncol(x)} in the LINPACK case
109+
and \code{min(dim(x))} in the LAPACK case, which contains
109110
additional information on \eqn{\bold{Q}}.}
111+
110112
\item{rank}{the rank of \code{x} as computed by the decomposition(*):
111113
always full rank in the LAPACK case.}
112114
\item{pivot}{information on the pivoting strategy used during
@@ -127,7 +129,7 @@ as.qr(x)
127129
For \code{qr}, the LINPACK routine \code{DQRDC} (but modified to
128130
\code{dqrdc2}(*)) and the LAPACK
129131
routines \code{DGEQP3} and \code{ZGEQP3}. Further LINPACK and LAPACK
130-
routines are used for \code{qr.coef}, \code{qr.qy} and \code{qr.aty}.
132+
routines are used for \code{qr.coef}, \code{qr.qy} and \code{qr.qty}.
131133

132134
LAPACK and LINPACK are from \url{https://netlib.org/lapack/} and
133135
\url{https://netlib.org/linpack/} and their guides are listed

0 commit comments

Comments
 (0)