/* nag_triplets_test (g08ecc) Example Program. * * Copyright 2000 Numerical Algorithms Group. * * Mark 6, 2000. * * Mark 8 revised, 2004 * */ #include #include #include #include #include #include int main(int argc, char *argv[]) { FILE *fpout; /* Integer scalar and array declarations */ Integer exit_status = 0; Integer lstate; Integer *state = 0; /* NAG structures */ NagError fail; /* Double scalar and array declarations */ double chi, df, p; double *x = 0; /* Choose the base generator */ Nag_BaseRNG genid = Nag_Basic; Integer subid = 0; /* Set the seed */ Integer seed[] = { 32423 }; Integer lseed = 1; /* Set the size of the (randomly generated) dataset */ Integer n = 10000; /* Set the size of the count matrix */ Integer max_count = 5; /* 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_triplets_test (g08ecc) Example Program Results\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; } /* 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_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 vector of n uniform variates between 0.0 and 1.0 */ 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; } /* nag_triplets_test (g08ecc). * Performs the triplets test for randomness */ nag_triplets_test(n, x, max_count, &chi, &df, &p, &fail); /* Display the results */ if (fail.code != NE_NOERROR && fail.code != NE_G08EC_CELL) { fprintf(fpout, "Error from nag_triplets_test (g08ecc).\n%s\n", fail.message); exit_status = 1; goto END; } fprintf(fpout, "\n"); fprintf(fpout, "Chisq = %10.4f\n", chi); fprintf(fpout, "DF = %8.2f\n", df); fprintf(fpout, "Prob = %10.4f\n", p); if (fail.code == NE_G08EC_CELL) fprintf(fpout, "Error from nag_triplets_test (g08ecc).\n%s\n", fail.message); END: if (fpout != stdout) fclose(fpout); if (x) NAG_FREE(x); if (state) NAG_FREE(state); return exit_status; }