nNodes {LinkedMatrix}R Documentation

Returns the Number of Nodes

Description

Returns the number of nodes.

Usage

nNodes(x)

Arguments

x

Either a ColumnLinkedMatrix or a RowLinkedMatrix object.

Value

The number of nodes.

See Also

ColumnLinkedMatrix-class, RowLinkedMatrix-class, and LinkedMatrix-class for more information on the ColumnLinkedMatrix, RowLinkedMatrix, and LinkedMatrix classes.

Examples

# 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)
)

# Get the number of nodes of the RowLinkedMatrix
nNodes(m)

[Package LinkedMatrix version 1.4.0 Index]