I have a three-dimensional array and inside that array there is another array of zeros and I want to remove it from the larger array. For example,
set.seed(1)
a = rnorm(60)
b = array(a, dim = c(10, 2, 5))
b[, , 4] = matrix(rep(0, 20), ncol = 2...
asked on
04.01.2016 / 18:14