/* nag_rand_init_nonrepeatable (g05kgc) Example Program. * * Copyright 2008, Numerical Algorithms Group. * * Mark 9, 2009. */ /* Pre-processor includes */ #include #include #include #include #include #include int main(int argc, char *argv[]) { FILE *fpout; /* Integer scalar and array declarations */ Integer exit_status = 0; Integer i, lstate; Integer *state = 0; /* NAG structures */ NagError fail; /* Double scalar and array declarations */ double *x = 0; /* Set the sample size */ Integer n = 5; /* Choose the base generator */ Nag_BaseRNG genid = Nag_Basic; Integer subid = 0; /* Initialise the error structure */ INIT_FAIL(fail); /* Check for command-line IO options */ fpout = nag_example_file_io(argc, argv, "-results", NULL); fprintf(fpout, "nag_rand_init_nonrepeatable (g05kgc) Example Program Results\n\n"); /* Get the length of the state array */ lstate = -1; nag_rand_init_nonrepeatable(genid, subid, state, &lstate, &fail); if (fail.code != NE_NOERROR) { fprintf(fpout, "Error from nag_rand_init_nonrepeatable (g05kgc).\n%s\n", fail.message); exit_status = 1; goto END; } /* Allocate arrays */ if (!(x = NAG_ALLOC(n, double)) || !(state = NAG_ALLOC(lstate, Integer))) { fprintf(fpout, "Allocation failure\n"); exit_status = -1; goto END; } /* Initialise the generator to a repeatable sequence */ nag_rand_init_nonrepeatable(genid, subid, state, &lstate, &fail); if (fail.code != NE_NOERROR) { fprintf(fpout, "Error from nag_rand_init_nonrepeatable (g05kgc).\n%s\n", fail.message); exit_status = 1; goto END; } /* Generate the variates*/ nag_rand_basic(n, state, x, &fail); if (fail.code != NE_NOERROR) { fprintf(fpout, "Error from nag_rand_basic (g05sac).\n%s\n", fail.message); exit_status = 1; goto END; } /* Display the variates */ for (i = 0; i < n; i++) { fprintf(fpout, "%10.4f\n", x[i]); } END: if (fpout != stdout) fclose(fpout); if (x) NAG_FREE(x); if (state) NAG_FREE(state); return exit_status; }