sitmo_engine_seed: Example Seed Set and RNG Draws with sitmo

View source: R/RcppExports.R

sitmo_engine_seedR Documentation

Example Seed Set and RNG Draws with sitmo

Description

Shows how to set a seed in sitmo.

Usage

sitmo_engine_seed(n, seed)

Arguments

n

An unsigned int that dictates how many realizations occur.

seed

An unsigned int that controls the rng seed.

Value

A vector with random sequences.

Examples

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))

coatless/sitmo documentation built on Nov. 16, 2023, 5:33 a.m.