https://github.com/cran/Matrix
Raw File
Tip revision: c545398bc74fce918b53e23bb482be214b2d9eb8 authored by Douglas Bates on 05 June 2004, 00:00:00 UTC
version 0.8-8
Tip revision: c545398
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