/* nag_specfun_dawson (s15afc) Example Program.
*
* Copyright 2022 Numerical Algorithms Group.
*
* Mark 28.3, 2022.
*/
#include <nag.h>
#include <stdio.h>
int main(void) {
double x, y;
Integer exit_status = 0;
/* Skip heading in data file */
scanf("%*[^\n]");
printf("nag_specfun_dawson (s15afc) Example Program Results\n");
printf(" x y\n");
while (scanf("%lf", &x) != EOF)
{
/* nag_specfun_dawson (s15afc).
* Dawson's integral
*/
y = nag_specfun_dawson(x);
printf("%12.3e %12.3e\n", x, y);
}
return exit_status;
}