/* nag_rand_hypergeometric (g05tec) 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 lr, i, lstate; Integer *state = 0, *x = 0; /* NAG structures */ NagError fail; Nag_ModeRNG mode; /* Double scalar and array declarations */ double *r = 0; /* Set the distribution parameters */ Integer ns = 500; Integer m = 900; Integer np = 1000; /* Set the sample size */ Integer n = 20; /* 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_hypergeometric (g05tec) 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; } /* Calculate the size of the reference vector */ lr = 28 + 20 * (int) sqrt(((double) m * ((double) ns / (double) np) * ((double)(np - m) / (double) np) * ((double)(np - ns) / (double) np))); /* Allocate arrays */ if (!(r = NAG_ALLOC(lr, double)) || !(state = NAG_ALLOC(lstate, Integer)) || !(x = NAG_ALLOC(n, 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; } /* Generate the variates, initialising the reference vector at the same time */ mode = Nag_InitializeAndGenerate; nag_rand_hypergeometric(mode, n, ns, np, m, r, lr, state, x, &fail); if (fail.code != NE_NOERROR) { fprintf(fpout, "Error from nag_rand_hypergeometric (g05tec).\n%s\n", fail.message); exit_status = 1; goto END; } /* Display the variates*/ for (i = 0; i < n; i++) fprintf(fpout, "%12ld\n", x[i]); END: if (fpout != stdout) fclose(fpout); if (r) NAG_FREE(r); if (state) NAG_FREE(state); if (x) NAG_FREE(x); return exit_status; }