simpleRand              package:RBioinf              R Documentation

_A _s_i_m_p_l_e _i_n_t_e_r_f_a_c_e _t_o _C _l_e_v_e_l _r_a_n_d_o_m _n_u_m_b_e_r _g_e_n_e_r_a_t_i_o_n.

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

     A simple interface function to R's C level rng code. Primarily a
     pedagogical tool to accompany the monograph R for Bioinformatics.

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

     simpleRand(x, y = "notused")

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

       x: The number of random numbers to generate. 

       y: Not used in the base implementation, but various exercises
          involve making use of this. 

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

     An interface, via '.Call' to R's underlying RNG cod.

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

     The random numbers generated, plus information about the RNG used.

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

     R. Gentleman

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

     'simpleSort', '.Call'

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

      simpleRand(4)

