Rev 10443 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{backsolve}\alias{backsolve}\alias{forwardsolve}\title{Solve an Upper or Lower Triangular System}\description{Solves a system of linear equations where the coefficient matrix isupper or lower triangular.}\usage{backsolve(r, x, k= ncol(r), upper.tri = TRUE, transpose = FALSE)forwardsolve(l, x, k= ncol(l), upper.tri = FALSE, transpose = FALSE)}\arguments{% Name 'r' is not really making sense for upper.tri = FALSE% Name 'x' is also a misnomer, should rather be 'b'. -- is this S ??\item{r,l}{an upper (or lower) triangular matrix giving thecoefficients for the system to be solved. Values below (above)the diagonal are ignored.}\item{x}{a matrix whose columns give ``right-hand sides'' forthe equations.}\item{k}{The number of columns of \code{r} and rows of \code{x} to use.}\item{upper.tri}{logical; if \code{TRUE} (default), the \emph{upper}\emph{tri}angular part of \code{r} is used. Otherwise, the lower one.}\item{transpose}{logical; if \code{TRUE}, solve \eqn{r' * y = x} for\eqn{y}, i.e., \code{t(r) \%*\% y == x}.}}\value{The solution of the triangular system. The result will be a vector if\code{x} is a vector and a matrix if \code{x} is a matrix.}\references{Dongarra, J. J., Bunch,J. R., Moler, C. B. and Stewart, G. W. (1978)\emph{LINPACK Users Guide.} Philadelphia: SIAM Publications.}\seealso{\code{\link{chol}},\code{\link{qr}},\code{\link{solve}}.}\examples{## upper triangular matrix `r':r <- rbind(c(1,2,3),c(0,1,1),c(0,0,2))( y <- backsolve(r, x <- c(8,4,2)) ) # -1 3 1r \%*\% y # == x = (8,4,2)( y2 <- backsolve(r, x, transpose = TRUE)) # 8 -12 -5all(t(r) \%*\% y2 == x)# exactly on Linux (Pentium)all(y == backsolve(t(r), x, upper = FALSE, transpose = TRUE))all(y2 == backsolve(t(r), x, upper = FALSE, transpose = FALSE))}\keyword{algebra}\keyword{array}