	
	_C_o_m_b_i_n_e _C_o_l_u_m_n_s _i_n_t_o _a _M_a_t_r_i_x
	
	     cbind(...)
	
	_D_e_s_c_r_i_p_t_i_o_n:
	
	     cbind takes a sequence of vector arguments and combines
	     them as the columns 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:
	
	     rbind, c.
	
	_E_x_a_m_p_l_e_s:
	
	     cbind(1,1:n)
	
