Rev 2 | Blame | Last modification | View Log | Download | RSS feed
\name{rbind}\title{Combine Rows into a Matrix}\usage{rbind(\dots)}\alias{rbind}\value{\code{rbind} takes a sequence of vector and/or matrix argumentsand combines them as the rows of a matrix.If there are several matrix arguments,they must all have the same number of columnsand this will be the number of columns of the result.If all the arguments are vectors, the number of columns in theresult is equal to the length of the longest vector.Values in shorter arguments are recycledto achieve this length.When the arguments consist of a mix of matrices and vectorsthe number of columns of the result is determined by the numberof columns of the matrix arguments. Any vectors have theirvalues recycled or subsetted to achieve this length.}\seealso{\code{\link{c}},\code{\link{cbind}}.}\examples{rbind(1,1:n)}\keyword{array}\keyword{manip}