setSeed: Set the RNG Seed from within Rcpp

Description Usage Arguments Value Examples

View source: R/RcppExports.R

Description

Set the RNG Seed from within Rcpp

Usage

1
setSeed(seed)

Arguments

seed

An unsigned int that is the seed one wishes to use.

Value

A set RNG scope.

Examples

1
2
3
4
5
set.seed(10)
x <- rnorm(5, 0, 1)
setSeed(10)
y <- rnorm(5, 0, 1)
all.equal(x, y, check.attributes = FALSE)

smmR documentation built on Aug. 3, 2021, 5:07 p.m.