simpleRand {RBioinf} | R Documentation |
A simple interface function to R's C level rng code. Primarily a pedagogical tool to accompany the monograph R for Bioinformatics.
simpleRand(x, y = "notused")
x |
The number of random numbers to generate. |
y |
Not used in the base implementation, but various exercises involve making use of this. |
An interface, via .Call
to R's underlying RNG cod.
The random numbers generated, plus information about the RNG used.
R. Gentleman
simpleRand(4)