I have a list of matrices with an equal number of rows. I want to combine the matrices column-wise (much like the cbind function). Suppose A and B are matrices with an equal number of rows. My list l is l[[1]] = A and l[[2]] = B. What I want is a new matrix M such that M = [A B].
What would be the best way to do this?