cpp-cheat/gsl/bessel.c
2017-02-15 23:10:47 +00:00

8 lines
141 B
C

#include "common.h"
int main(void) {
double x = 5.0;
printf("J0(%g) = %.18e\n", x, gsl_sf_bessel_J0(x));
return EXIT_SUCCESS;
}