/* nag_prob_non_central_beta_dist (g01gec) Example Program. * * Copyright 2000 Numerical Algorithms Group. * * Mark 6, 2000. */ #include #include #include #include int main(int argc, char *argv[]) { FILE *fpin, *fpout; Integer exit_status = 0, max_iter; NagError fail; double a, b, lambda, prob, tol, x; INIT_FAIL(fail); /* Check for command-line IO options */ fpin = nag_example_file_io(argc, argv, "-data", NULL); fpout = nag_example_file_io(argc, argv, "-results", NULL); fprintf(fpout, "nag_prob_non_central_beta_dist (g01gec) Example Program Results\n"); /* Skip heading in data file */ fscanf(fpin, "%*[^\n]"); fprintf(fpout, "\n x a b lambda prob\n\n"); tol = 5e-6; max_iter = 50; while ((fscanf(fpin, "%lf %lf %lf %lf %*[^\n]", &x, &a, &b, &lambda)) != EOF) { /* nag_prob_non_central_beta_dist (g01gec). * Computes probabilities for the non-central beta * distribution */ prob = nag_prob_non_central_beta_dist(x, a, b, lambda, tol, max_iter, &fail); if (fail.code != NE_NOERROR) { fprintf(fpout, "Error from nag_prob_non_central_beta_dist (g01gec).\n%s\n", fail.message); exit_status = 1; goto END; } fprintf(fpout, "%8.3f %8.3f %8.3f %8.3f %8.4f\n", x, a, b, lambda, prob); } END: if (fpin != stdin) fclose(fpin); if (fpout != stdout) fclose(fpout); return exit_status; }