/* nag_rand_sample (g05ndc) 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, m; Integer *ipop = 0, *isampl = 0, *state = 0; /* NAG structures */ NagError fail; /* Population size */ Integer n = 8; /* Choose the base generator */ Nag_BaseRNG genid = Nag_Basic; Integer subid = 0; /* Set the seed */ Integer seed[] = { 1762543 }; Integer lseed = 1; /* 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_sample (g05ndc) Example Program Results\n\n"); /* Get the length of the state array */ lstate = -1; nag_rand_init_repeatable(genid, subid, seed, lseed, state, &lstate, &fail); if (fail.code != NE_NOERROR) { fprintf(fpout, "Error from nag_rand_init_repeatable (g05kfc).\n%s\n", fail.message); exit_status = 1; goto END; } if (!(ipop = NAG_ALLOC(n, Integer)) || !(isampl = NAG_ALLOC(n, Integer)) || !(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_repeatable(genid, subid, seed, lseed, state, &lstate, &fail); if (fail.code != NE_NOERROR) { fprintf(fpout, "Error from nag_rand_init_repeatable (g05kfc).\n%s\n", fail.message); exit_status = 1; goto END; } fprintf(fpout, " Samples from the first %1ld integers\n", n); fprintf(fpout, " Sample size Values\n"); /* Initialise the population*/ for (i = 0; i < n; i++) ipop[i] = i + 1; /* Generate samples of different sizes*/ for (m = 1; m <= n; m++) { nag_rand_sample(ipop, n, isampl, m, state, &fail); if (fail.code != NE_NOERROR) { fprintf(fpout, "Error from nag_rand_sample (g05ndc).\n%s\n", fail.message); exit_status = 1; goto END; } /* Display the results*/ fprintf(fpout, " %6ld ", m); for (i = 0; i < m; i++) fprintf(fpout, "%2ld%s", isampl[i], (i + 1)%8?" ":"\n"); if (m%8) fprintf(fpout, "\n"); } END: if (fpout != stdout) fclose(fpout); if (ipop) NAG_FREE(ipop); if (isampl) NAG_FREE(isampl); if (state) NAG_FREE(state); return exit_status; }