	
	_T_h_e _N_u_m_b_e_r _o_f _C_o_l_u_m_n_s _o_f _a _M_a_t_r_i_x
	
	     ncol(x)
	     .COL(x)
	
	_A_r_g_u_m_e_n_t_s:
	
	           x : array
	
	_D_e_s_c_r_i_p_t_i_o_n:
	
	     ncol returns the number of columns present in its argu-
	     ment.  .COL does the same, but dealing a vector as 1-
	     column matrix.  )
	
	_S_e_e _A_l_s_o:
	
	     nrow and NROW.
	
	_E_x_a_m_p_l_e_s:
	
	     ncol(matrix(1:12, 3, 4)) # 4
	     ncol(array(1:24, dim= 2:4)) # 3, the second dimension
	     .COL(1:12) # 1
	
