Displaying 1 result from an estimated 1 matches for "savedseed".
2013 Jun 07
0
[Rcpp-devel] Setting the R random seed from Rcpp
...t;matteo.fasiolo at gmail.com> a ?crit :
>
> > Dear Rcpp experts,
> >
> > I would like to be able to store the R random seed from a Rcpp
> > function and then reset it. In other words I would like to replicate
> > the following code in Rcpp:
> >
> > savedSeed <- .Random.seed
> > x <- Rfunction(parameters1);
> >
> > .Random.seed <- savedSeed
> > x1 <- Rfunction(parameters2);
> >
> > where Rfunction simulates some random numbers and uses them
> > but with different parameter values.
> > Is it pos...