| SyncRNG-class | R Documentation |
See syncrng-package for package documentation.
seedThe seed for the random number generator
stateThe current state of the RNG, should not be modified by the user
initialize(..., seed = 0)Initialize the RNG using the C function R_syncrng_seed
rand()Generate a single random float in the range [0, 1)
randbelow(n)Generate a random integer below a given number
randi()Generate a single random 32-bit integer
shuffle(x)Randomly shuffle a provided array of values
s <- SyncRNG(seed=123456)
for (i in 1:10)
cat(s$randi(), '\n')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.