Skip to content
Prev 78044 / 398502 Next

is it possible to form matrix of matrices...and multiple arrays

On Thu, 29 Sep 2005 vincent at 7d4.com wrote:

            
You _can_ do this with matrix() (although that was not quite what was 
asked). Try

a <- b <- c <- d <- matrix(1:4, 2, 2)
e <- matrix(list(a,b,c,d), 2,2)
e
e[1,2][[1]]