| unpack {Matrix} | R Documentation |
Expands decompositions stored in compact form into matrix factors.
unpack(x, ...)
x |
a matrix stored in packed form. |
... |
optional additional arguments (none are used in currently available methods) |
This is a generic function with special methods for different types
of packed matrices.
Use methods("unpack") to list all the methods for the
unpack generic.
A Matrix object containing the full-storage representation of x.
x <- Diagonal( 1:3) x unpack(x)