cbind_list {DelayedTensor} | R Documentation |
Returns the binded DelayedArray in column space.
cbind_list(L)
L |
list of 2D DelayedArray |
This is a wrapper function to modebind_list
,
when the DelayedArrays are 2D.
2D DelayedArray object
The dimensions of column in each DelayedArray must match.
library("DelayedRandomArray") dlizt <- list( 'darr1' = RandomUnifArray(c(2,3)), 'darr2' = RandomUnifArray(c(2,3))) cbind_list(dlizt)