as.array.sparse3Darray: Convert Sparse Array to Full Array

View source: R/sparse3Darray.R

as.array.sparse3DarrayR Documentation

Convert Sparse Array to Full Array

Description

Convert a sparse three-dimensional array to a full three-dimensional array.

Usage

## S3 method for class 'sparse3Darray'
as.array(x, ...)

Arguments

x

Sparse three-dimensional array (object of class "sparse3Darray").

...

Ignored.

Details

This is a method for the generic as.array for sparse three-dimensional arrays (class "sparse3Darray"). It converts the sparse three-dimensional array x into an array representing the same data.

Value

An array (class "array") with the same dimensions as x and the same type of entries as x.

Author(s)

\spatstatAuthors

.

See Also

sparse3Darray, as.sparse3Darray

Examples

  M <- sparse3Darray(i=1:3, j=c(3,1,2), k=4:2,
                     x=runif(3), dims=rep(4, 3))
  V <- as.array(M)

spatstat.sparse documentation built on Oct. 24, 2023, 9:08 a.m.