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

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

int main(void)
{
  Integer exit_status = 0, i, m, n, r;
  NagError fail;
  double *a = 0, p, xcap;

  INIT_FAIL(fail);

  printf("nag_1d_cheb_eval (e02aec) Example Program Results \n");

  /* Skip heading in data file */
  scanf("%*[^\n]");
  while ((scanf("%" NAG_IFMT "", &m) != EOF))
  {
    if (m > 0) {
      scanf("%" NAG_IFMT "", &n);
      if (n >= 0) {
        if (!(a = NAG_ALLOC(n + 1, double)))
        {
          printf("Allocation failure\n");
          exit_status = -1;
          goto END;
        }
      }
      else {
        printf("Invalid n.\n");
        exit_status = 1;
        return exit_status;
      }
      for (i = 0; i < n + 1; ++i)
        scanf("%lf", &a[i]);
      printf("\n   R       Argument       Value of polynomial \n");
      for (r = 1; r <= m; ++r) {
        xcap = (double) (2 * r - m - 1) / (double) (m - 1);
        /* nag_1d_cheb_eval (e02aec).
         * Evaluates the coefficients of a Chebyshev series
         * polynomial
         */
        nag_1d_cheb_eval(n + 1, a, xcap, &p, &fail);
        if (fail.code != NE_NOERROR) {
          printf("Error from nag_1d_cheb_eval (e02aec).\n%s\n", fail.message);
          exit_status = 1;
          goto END;
        }
        printf(" %3" NAG_IFMT "%14.4f    %14.4f\n", r, xcap, p);
      }
    }
  END:
    NAG_FREE(a);
  }
  return exit_status;
}