/* nag_cumul_normal_complem (s15acc) Example Program. * * Copyright 1990 Numerical Algorithms Group. * * Mark 1, 1990. * * Mark 3 revised, 1994. */ #include #include #include #include int main(void) { double x, y; /* Skip heading in data file */ Vscanf("%*[^\n]"); Vprintf("nag_cumul_normal_complem (s15acc) Example Program Results\n"); Vprintf(" x y\n"); while (scanf("%lf", &x) != EOF) { /* nag_cumul_normal_complem (s15acc). * Complement of cumulative Normal distribution function * Q(x) */ y = nag_cumul_normal_complem(x); Vprintf("%12.3e%12.3e\n", x, y); } return EXIT_SUCCESS; }