	
	_M_a_t_r_i_x _C_r_o_s_s_p_r_o_d_u_c_t
	
	     crossprod(x, y=x)
	
	_D_e_s_c_r_i_p_t_i_o_n:
	
	     Given matrices x and y as arguments, t returns their
	     matrix cross-product.  This is formally equivalent to,
	     but faster than, the call t(x) %*% y.
	
