/* nag_specfun_ellipint_legendre_2 (s21bfc) Example Program.
*
* Copyright 2022 Numerical Algorithms Group.
*
* Mark 28.3, 2022.
*/
/* Pre-processor includes */
#include <nag.h>
#include <stdio.h>
int main(void) {
/*Integer scalar and array declarations */
Integer exit_status = 0;
Integer ix;
/*Double scalar and array declarations */
double dm, e, phi, pi;
NagError fail;
INIT_FAIL(fail);
printf("nag_specfun_ellipint_legendre_2 (s21bfc) Example Program Results\n");
printf("\n phi dm nag_specfun_ellipint_legendre_2\n\n");
pi = nag_math_pi;
for (ix = 1; ix <= 3; ix++) {
phi = ix * pi / 6.00e0;
dm = ix * 0.250e0;
/*
* nag_specfun_ellipint_legendre_2 (s21bfc)
* Elliptic integral of 2nd kind, Legendre form, E( phi |m)
*/
e = nag_specfun_ellipint_legendre_2(phi, dm, &fail);
if (fail.code != NE_NOERROR) {
printf("Error from nag_specfun_ellipint_legendre_2 (s21bfc).\n%s\n",
fail.message);
exit_status = 1;
goto END;
}
printf("%7.2f%7.2f%12.4f\n", phi, dm, e);
}
END:
return exit_status;
}