Entering edit mode
What is the best way to combine two or more DelayedArray to a high dimension DelayedArray with low cost of memory?
for example:
a <- array(runif(1500000), dim=c(10000, 30, 5)) A <- DelayedArray(a) b <- array(runif(1500000), dim=c(10000, 30, 5)) B <- DelayedArray(b) DelayedArray(arrayc(A, B), dim=c(10000, 30, 5, 2))
Thank you!
Thank you! very helpful.