/* nag_airy_bi_deriv (s17akc) Example Program. * * Copyright 1990 Numerical Algorithms Group. * * Mark 2 revised, 1992. */ #include #include #include #include int main(void) { Integer exit_status = 0; double x, y; NagError fail; INIT_FAIL(fail); /* Skip heading in data file */ scanf("%*[^\n]"); printf("nag_airy_bi_deriv (s17akc) Example Program Results\n"); printf(" x y\n"); while (scanf("%lf", &x) != EOF) { /* nag_airy_bi_deriv (s17akc). * Derivative of the Airy function Bi(x) */ y = nag_airy_bi_deriv(x, &fail); if (fail.code != NE_NOERROR) { printf("Error from nag_airy_bi_deriv (s17akc).\n%s\n", fail.message); exit_status = 1; goto END; } printf("%12.3e%12.3e\n", x, y); } END: return exit_status; }