Example description
/* nag_prob_beta_dist (g01eec) Example Program.
 *
 * Copyright 2017 Numerical Algorithms Group.
 *
 * Mark 26.2, 2017.
 */

#include <nag.h>
#include <stdio.h>
#include <nag_stdlib.h>
#include <nagg01.h>

int main(void)
{
  Integer exit_status = 0;
  double a, b, p, pdf, q, tol, x;
  NagError fail;

  INIT_FAIL(fail);

  /* Skip heading in data file */
  scanf("%*[^\n]");
  printf("nag_prob_beta_dist (g01eec) Example Program Results\n");
  printf("   x         a            b            p            q"
         "          pdf\n\n");
  while (scanf("%lf %lf %lf %lf", &x, &a, &b, &tol) != EOF)
  {
    /* nag_prob_beta_dist (g01eec).
     * Upper and lower tail probabilities and probability
     * density function for the beta distribution
     */
    nag_prob_beta_dist(x, a, b, tol, &p, &q, &pdf, &fail);
    if (fail.code != NE_NOERROR) {
      printf("Error from nag_prob_beta_dist (g01eec).\n%s\n", fail.message);
      exit_status = 1;
      goto END;
    }
    printf("%7.4f%13.4e%13.4e%13.4e%13.4e%13.4e\n", x, a, b, p, q, pdf);
  }

END:
  return exit_status;
}