home *** CD-ROM | disk | FTP | other *** search
-
- _C_o_m_b_i_n_e _R_o_w_s _i_n_t_o _a _M_a_t_r_i_x
-
- rbind(...)
-
- _V_a_l_u_e:
-
- rbind takes a sequence of vector and/or matrix argu-
- ments and combines them as the rows of a matrix.
-
- If there are several matrix arguments, they must all
- have the same number of columns and this will be the
- number of columns of the result. If all the arguments
- are vectors, the number of columns in the result is
- equal to the length of the longest vector. Values in
- shorter arguments are recycled to achieve this length.
-
- When the arguments consist of a mix of matrices and
- vectors the number of columns of the result is deter-
- mined by the number of columns of the matrix arguments.
- Any vectors have their values recycled or subsetted to
- achieve this length.
-
- _S_e_e _A_l_s_o:
-
- c, cbind.
-
- _E_x_a_m_p_l_e_s:
-
- rbind(1,1:n)
-
-