Skip to content
Prev 256327 / 398506 Next

How to define a number of matrices through loops

Hi Ajss,

You instantiated mt as a vector, not a list.  Try:

row <- c(3,4,6,4,5)
mt <- vector("list", length(row)) # list with length of "row" elements
for (i in 1:5){
mt[[i]] <- matrix(nrow=row[i], ncol=4)
}
mt

Or in one line:
mt <- lapply(1:5, function(x) matrix(nrow = x, ncol = 4))
mt

Hope this helps,

Josh
On Fri, Apr 8, 2011 at 8:22 PM, Amarjit Singh Sethi <set_alt at yahoo.co.in> wrote: