InvertPermutation       package:GraphAlignment       R Documentation

_I_n_v_e_r_t _p_e_r_m_u_t_a_t_i_o_n

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

     Invert the permutation defined by the specified vector.

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

     InvertPermutation(p)

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

       p: permutation vector

_D_e_t_a_i_l_s:

     The return value is a permutation vector equal to the inverse of
     the input permutation.

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

     Joern P. Meier, Michal Kolar, Ville Mustonen, Michael Laessig, and
     Johannes Berg

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

       p <- rank(rnorm(10))
       pInv <- InvertPermutation(p)

