LinkedMatrix-class: A Class Union of ColumnLinkedMatrix and RowLinkedMatrix

Description Methods See Also Examples

Description

This class is abstract and no objects can be created from it. It can be used to check whether an object is either of type ColumnLinkedMatrix or of type RowLinkedMatrix using is(x, "LinkedMatrix") and to assign methods for both ColumnLinkedMatrix and RowLinkedMatrix classes, e.g. show.

Methods

See Also

ColumnLinkedMatrix-class and RowLinkedMatrix-class for implementations of column-linked and row-linked matrices.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
# Create an example RowLinkedMatrix from various matrix-like objects that
# correspond in dimensions
m <- RowLinkedMatrix(
    ff::ff(initdata = rnorm(50), dim = c(5, 10)),
    bigmemory::big.matrix(init = rnorm(50), nrow = 5, ncol = 10),
    matrix(data = rnorm(50), nrow = 5, ncol = 10)
)

# Test if m is an object of either type ColumnLinkedMatrix or RowLinkedMatrix
if (is(m, "LinkedMatrix")) {
    message("m is a LinkedMatrix")
}

LinkedMatrix documentation built on July 8, 2020, 5:53 p.m.