matrixDistance             package:puma             R Documentation

_C_a_l_c_u_l_a_t_e _d_i_s_t_a_n_c_e _b_e_t_w_e_e_n _t_w_o _m_a_t_r_i_c_e_s

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

     This calculates the mean Euclidean distance between the rows of
     two matrices. It is used in the function 'pumaPCA'

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

     matrixDistance(
         matrixA
     ,   matrixB
     )

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

 matrixA: the first matrix 

 matrixB: the second matrix 

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

     A numeric giving the mean distance

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

     Richard D. Pearson

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

     Related class 'pumaPCA'

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

             show(matrixDistance(matrix(1,2,2),matrix(2,2,2)))

