euc                 package:bioDist                 R Documentation

_E_u_c_l_i_d_e_a_n _d_i_s_t_a_n_c_e

_D_e_s_c_r_i_p_t_i_o_n:

     Calculate pairwise Euclidean distances for all columns of a matrix
     and save as a 'dist' object

_U_s_a_g_e:

     euc(x, ...)

_A_r_g_u_m_e_n_t_s:

       x: n by p matrix or ExpressionSet; if x is an ExpressionSet,
          then the function uses its 'exprs' slot.

     ...: arguments passed to 'euc':

     '_d_i_a_g' if TRUE, then the diagonal of the distance matrix will be
          displayed; default is FALSE.

     '_u_p_p_e_r' if TRUE, then the upper triangle of the distance matrix
          will be displayed; default is FALSE. 

_V_a_l_u_e:

     Pairwise Euclidean distance object

_A_u_t_h_o_r(_s):

     Beiying Ding

_S_e_e _A_l_s_o:

     'spearman.dist', 'tau.dist', 'man','KLdist.matrix','KLD.matrix',
     'mutualInfo'

_E_x_a_m_p_l_e_s:

      x <- matrix(rnorm(200), nrow = 5)
      euc(x)

