On 3/15/2010 1:37 PM, jlu...@ria.buffalo.edu wrote:
> What is an easy way to stack a matrix multiple times? E.g. I have a 6x6
> matrix that I need to stack vertically 154 times to get a 6*154 by 6
> matrix. I would rather not rbind(X,X,...,X) matrices.--Joe
X <- matrix(runif(36), ncol=6)
how about
y = X[rep(1:nrow(X), 6), ]
?
On Mon, Mar 15, 2010 at 5:37 PM, wrote:
> What is an easy way to stack a matrix multiple times? E.g. I have a 6x6
> matrix that I need to stack vertically 154 times to get a 6*154 by 6
> matrix. I would rather not rbind(X,X,...,X) matrices. --Joe
>
What is an easy way to stack a matrix multiple times? E.g. I have a 6x6
matrix that I need to stack vertically 154 times to get a 6*154 by 6
matrix. I would rather not rbind(X,X,...,X) matrices.--Joe
[[alternative HTML version deleted]]
3 matches
Mail list logo