/* nag_struve_i1ml1 (s18gdc) Example Program.
 *
 * Copyright 2017 Numerical Algorithms Group.
 *
 * Mark 26.1, 2017.
 */

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

int main(void)
{
  Integer exit_status = 0;
  double x, y;
  /* Nag Types */
  NagError fail;

  INIT_FAIL(fail);

  /* Skip heading in data file */
  scanf("%*[^\n]");
  printf("nag_struve_i1ml1 (s18gdc) Example Program Results\n");
  printf("     x        I1(x)-L1(x)\n");
  while (scanf("%lf", &x) != EOF)
  {
    /* nag_struve_i1ml1 (s18gdc).
     */
    y = nag_struve_i1ml1(x, &fail);
    if (fail.code != NE_NOERROR) {
      printf("Error from nag_struve_i1ml1 (s18gdc).\n%s\n", fail.message);
      exit_status = 1;
      goto END;
    }
    printf("%12.3e%12.3e\n", x, y);
  }

END:
  return exit_status;
}