Try this:

x<- matrix(1:12, nrow = 4, byrow = T)
y <- matrix (13:24, nrow=4, by.row=T)

To add the rows of y before the rows of x:

rbind(y,x)

--
Tyler Smith

______________________________________________
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Reply via email to