simpleSort              package:RBioinf              R Documentation

_A _s_i_m_p_l_e _i_n_t_e_r_f_a_c_e _t_o _s_o_r_t_i_n_g _r_o_u_t_i_n_e_s _i_n _R

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

     The function demonstrates how to access R's internal sorting
     routines via the '.Call' interface.

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

     simpleSort(x)

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

       x: The vector to be sorted. 

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

     A simple interface to sorting routines in R. It is intended to be
     modified following exercises in the accompanying monograph.

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

     The sorted vector.

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

     R. Gentleman

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

     'simpleRand', '.Call'

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

      simpleSort(c(4,2,6))

