NAG Library Manual, Mark 29.3
Interfaces:  FL   CL   CPP   AD 

NAG CL Interface Introduction
Example description
/* nag_specfun_tanh (s10aac) Example Program.
 *
 * Copyright 2023 Numerical Algorithms Group.
 *
 * Mark 29.3, 2023.
 */

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

int main(void) {
  Integer exit_status = 0;
  double x, y;

  /* Skip heading in data file */
  scanf("%*[^\n]");
  printf("nag_specfun_tanh (s10aac) Example Program Results\n");
  printf("           x       y\n");
  while (scanf("%lf", &x) != EOF)
  {
    /* nag_specfun_tanh (s10aac).
     * Hyperbolic tangent, tanh x
     */
    y = nag_specfun_tanh(x);
    printf("%12.1f%12.5f\n", x, y);
  }

  return exit_status;
}