/* nag_rand_logical (g05tbc) Example Program. * * Copyright 2008, Numerical Algorithms Group. * * Mark 9, 2009. */ /* Pre-processor includes */ #include #include #include #include #include int main(void) { /*Logical scalar and array declarations */ Nag_Boolean *x = 0; /* Integer scalar and array declarations */ Integer exit_status = 0; Integer i, lstate; Integer *state = 0; /* NAG structures */ NagError fail; /* Set the distribution parameters */ double p = 0.5e0; /* 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); printf("nag_rand_logical (g05tbc) 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) { printf("Error from nag_rand_init_repeatable (g05kfc).\n%s\n", fail.message); exit_status = 1; goto END; } /* Allocate arrays */ if (!(state = NAG_ALLOC(lstate, Integer)) || !(x = NAG_ALLOC(n, Nag_Boolean))) { printf("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) { printf("Error from nag_rand_init_repeatable (g05kfc).\n%s\n", fail.message); exit_status = 1; goto END; } /* Generate the variates*/ nag_rand_logical(n, p, state, x, &fail); if (fail.code != NE_NOERROR) { printf("Error from nag_rand_logical (g05tbc).\n%s\n", fail.message); exit_status = 1; goto END; } /* Display the variates*/ for (i = 0; i < n; i++) printf("%c\n", (x[i])?'T':'F'); END: if (state) NAG_FREE(state); if (x) NAG_FREE(x); return exit_status; }