I have a 13 dimensional array: MatrixQ<-array(0,dim=c(2,2,2,2,2,2,2,2,2,2,2,2,3))
How can I refer to ith dimension of it in a loop?
for (i in 1:13) { I want to assign the number i to the ith dimension of the array } What command I should use? Thanks,