euclidean                package:emu                R Documentation

_F_i_n_d _t_h_e _i_n_t_e_r-_e_u_c_l_i_d_e_a_n _d_i_s_t_a_n_c_e _f_o_r _a _d_a_t_a _m_a_t_r_i_x

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

     Finds the inter-euclidean distance for a data matrix

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

     euclidean(data, m=1, n=ncol(data))

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

    data: A vector or matrix of numerical data.  

       m: The first column of data to be used in the distance
          calculation. 

       n: The last column of data to be used in the distance
          calculation. 

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

     Calculates the euclidean distance between successive rows of the
     matrix based on  columns m:n.

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

     steady

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

       euclidean(cbind(c(1,2,3,4), c(2,3,2,2)))

