https://github.com/cran/Matrix
Raw File
Tip revision: de5f258c8af9ef450c13faf3f137508cd9b965da authored by Douglas Bates on 12 June 2004, 00:00:00 UTC
version 0.8-9
Tip revision: de5f258
unpack.Rd
\name{unpack}
\title{Full Storage Representation of Packed Matrices}
\usage{
unpack(x, \dots)
}
\alias{unpack}
\description{
    Expands decompositions stored in compact form into matrix factors.
}
\arguments{
    \item{x}{
	a matrix stored in packed form. 
    }
  \item{\dots}{further arguments passed to or from other methods.}
}
\value{
    A \code{Matrix} object containing the full-storage representation of \code{x}.
}
\details{
    This is a generic function with special methods for different types
    of packed matrices.
    Use \code{\link{methods}("unpack")} to list all the methods for the
    \code{unpack} generic.
}
\examples{
\dontrun{
x <- Diagonal( 1:3)
x
unpack(x)
}
}
\keyword{array}
\keyword{algebra}
back to top