The RNGs and distributions functions can also be used from C++ at various levels of abstraction. Technically there are three ways to make use of dqrng at the C++ level:
// [[Rcpp::depends(dqrng)]]
together with Rcpp::sourceCpp()
Rcpp::cppFunction(depends = "dqrng", ...)
LinkingTo: dqrng
The following functions are also available if you include dqrng.h
.
void dqrng::dqset_seed(Rcpp::IntegerVector seed,
Rcpp::Nullable<Rcpp::IntegerVector> stream = R_NilValue)void dqrng::dqRNGkind(std::string kind, const std::string& normal_kind = "ignored")
seed
stream
kind
normal-kind
RNGkind
size_t n, double min = 0.0, double max = 1.0)
Rcpp::NumericVector dqrng::dqrunif(double dqrng::runif(double min = 0.0, double max = 1.0)
n
min
max
size_t n, double mean = 0.0, double sd = 1.0)
Rcpp::NumericVector dqrng::dqrnorm(double dqrng::rnorm(double mean = 0.0, double sd = 1.0)
n
mean
sd
size_t n, double rate = 1.0)
Rcpp::NumericVector dqrng::dqrexp(double dqrng::rexp(double rate = 1.0)
n
rate
int m, int n, bool replace = false,
Rcpp::IntegerVector dqrng::dqsample_int(
Rcpp::Nullable<Rcpp::NumericVector> probs = R_NilValue,int offset = 0)
double m, double n, bool replace = false,
Rcpp::NumericVector dqrng::dqsample_num(
Rcpp::Nullable<Rcpp::NumericVector> probs = R_NilValue,int offset = 0)
m
n
replace
prob
offset
[offset, offset + m)
The two functions are used for “normal” and “long-vector” support in R.