	
	_C_o_m_b_i_n_e _R_o_w_s _i_n_t_o _a _M_a_t_r_i_x
	
	     rbind(...)
	
	_D_e_s_c_r_i_p_t_i_o_n:
	
	     rbind takes a sequence of vector arguments and combines
	     them as the rows of a matrix.  If the vectors differ in
	     length, the values in the shorter ones are recycled so
	     that their effective length is equal to that of the
	     longest argument.
	
	_S_e_e _A_l_s_o:
	
	     cbind, c.
	
	_E_x_a_m_p_l_e_s:
	
	     rbind(1,1:n)
	
