Learn R Programming

Matrix (version 0.9-1)

unpack: Full Storage Representation of Packed Matrices

Description

Expands decompositions stored in compact form into matrix factors.

Usage

unpack(x, ...)

Arguments

x
a matrix stored in packed form.
...
further arguments passed to or from other methods.

Value

  • A Matrix object containing the full-storage representation of x.

Details

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.

Examples

Run this code
x <- Diagonal( 1:3)
x
unpack(x)

Run the code above in your browser using DataLab