bind-arrays {DelayedArray}R Documentation

Bind arrays along their rows or columns

Description

Bind array-like objects with an arbitrary number of dimensions along their rows (arbind) or columns (acbind).

Usage

arbind(...)
acbind(...)

Arguments

...

The array-like objects to bind.

Value

An array-like object, typically of the same class as the input objects if they all have the same class.

See Also

Examples

a1 <- array(1:60, c(3, 5, 4),
            dimnames=list(NULL, paste0("M1y", 1:5), NULL))
a2 <- array(101:240, c(7, 5, 4),
            dimnames=list(paste0("M2x", 1:7), paste0("M2y", 1:5), NULL))
a3 <- array(10001:10100, c(5, 5, 4),
            dimnames=list(paste0("M3x", 1:5), NULL, paste0("M3z", 1:4)))

arbind(a1, a2, a3)

[Package DelayedArray version 0.4.1 Index]