Skip to content
Prev 200419 / 398503 Next

(Parallel) Random number seed question...

On Mon, 16 Nov 2009, Blair Christian wrote:

            
mvtnorm is based on FORTRAN code which uses unif_rand() from the C API:

void F77_SUB(rndstart)(void) { GetRNGstate(); }
void F77_SUB(rndend)(void) { PutRNGstate(); }
double F77_SUB(unifrnd)(void) { return unif_rand(); }

Torsten