Description Usage Arguments Value Examples
Shows how to set a seed in sitmo.
1 | sitmo_engine_seed(n, seed)
|
n |
An |
seed |
An |
A vector
with random sequences.
1 2 3 4 5 6 7 | n = 10
a = sitmo_engine_seed(n, 1337)
b = sitmo_engine_seed(n, 1337)
c = sitmo_engine_seed(n, 1338)
isTRUE(all.equal(a,b))
isTRUE(all.equal(a,c))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.