/* nag_stat_prob_hypergeom (g01blc) Example Program.
*
* Copyright 2021 Numerical Algorithms Group.
*
* Mark 27.2, 2021.
*
*/
#include <nag.h>
#include <stdio.h>
int main(void) {
Integer exit_status = 0;
double plek, peqk, pgtk;
Integer k, l, m, n;
NagError fail;
INIT_FAIL(fail);
printf("nag_stat_prob_hypergeom (g01blc) Example Program Results\n");
/* Skip heading in data file */
scanf("%*[^\n] ");
printf("\n n l m k plek pgtk peqk\n\n");
while (
(scanf("%" NAG_IFMT " %" NAG_IFMT " %" NAG_IFMT " %" NAG_IFMT "%*[^\n]",
&n, &l, &m, &k)) != EOF) {
/* nag_stat_prob_hypergeom (g01blc).
* Hypergeometric distribution function
*/
nag_stat_prob_hypergeom(n, l, m, k, &plek, &pgtk, &peqk, &fail);
if (fail.code != NE_NOERROR) {
printf("Error from nag_stat_prob_hypergeom (g01blc).\n%s\n",
fail.message);
exit_status = 1;
goto END;
}
printf(" %4" NAG_IFMT "%4" NAG_IFMT "%4" NAG_IFMT "%4" NAG_IFMT
"%10.5f%10.5f"
"%10.5f\n",
n, l, m, k, plek, pgtk, peqk);
}
END:
return exit_status;
}