nNodes: Returns the Number of Nodes

Description Usage Arguments Value See Also Examples

View source: R/LinkedMatrix.R

Description

Returns the number of nodes.

Usage

1
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

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
# 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)

QuantGen/LinkedMatrix documentation built on May 28, 2020, 10:51 p.m.