/* nag_stat_pdf_landau_moment1 (g01ptc) Example Program.
*
* Copyright 2023 Numerical Algorithms Group.
*
* Mark 29.2, 2023.
*/
#include <nag.h>
#include <stdio.h>
int main(void) {
/* Scalars */
double x, y;
Integer exit_status = 0;
printf(" nag_stat_pdf_landau_moment1 (g01ptc) Example Program Results\n");
/* Skip heading in data file */
scanf("%*[^\n] ");
scanf("%lf%*[^\n] ", &x);
/* nag_stat_pdf_landau_moment1 (g01ptc).
* Landau first moment function Phi_1(x)
*/
y = nag_stat_pdf_landau_moment1(x);
printf("\n X Y\n\n");
printf(" %3.1f %13.4e\n", x, y);
return exit_status;
}