/* nag_prob_der_landau (g01rtc) Example Program. * * Copyright 2002 Numerical Algorithms Group. * * Mark 7, 2002. */ #include #include #include #include int main(void) { /* Scalars */ double x, y; Integer exit_status = 0; printf(" nag_prob_der_landau (g01rtc) Example Program Results\n"); /* Skip heading in data file */ scanf("%*[^\n] "); scanf("%lf%*[^\n] ", &x); /* nag_prob_der_landau (g01rtc). * Landau derivative function phi'(lambda) */ y = nag_prob_der_landau(x); printf("\n X Y\n\n"); printf(" %3.1f %13.4e\n", x, y); return exit_status; }