/* nag_specfun_cdf_normal (s15abc) Example Program.
*
* Copyright 2024 Numerical Algorithms Group.
*
* Mark 30.1, 2024.
*/
#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_cdf_normal (s15abc) Example Program Results\n");
printf(" x y\n");
while (scanf("%lf", &x) != EOF)
{
/* nag_specfun_cdf_normal (s15abc).
* Cumulative Normal distribution function P(x)
*/
y = nag_specfun_cdf_normal(x);
printf("%12.3e%12.3e\n", x, y);
}
return exit_status;
}