bug-gsl
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Bug-gsl] nan bug in bessel_Jnu ?


From: Benjamin von Ardenne
Subject: [Bug-gsl] nan bug in bessel_Jnu ?
Date: Wed, 2 Apr 2014 17:05:37 +0200

Hello everyone,

I have this particular problem where I need

gsl_sf_bessel_Jnu(0.5, 3/2 * pi)

and I tested it with the following code:


#include <stdio.h>
#include <math.h>
#include <gsl/gsl_sf_bessel.h>

int
main (void)
{
  double y1 = gsl_sf_bessel_Jnu(0.5, 3.0/2.0 * M_PI+1e-15);
  double y2 = gsl_sf_bessel_Jnu(0.5, 3.0/2.0 * M_PI);

  printf ("%e vs. %e\n", y1, y2);
  return 0;
}

Output:

-3.675526e-01 vs. nan

MATLAB e.g. does return the correct value for 3/2 * pi. Is this a bug in
the implementation of the function? It seems so and I have not found
documentation about irregularities at 3/2 PI.

Cheers,
Ben


reply via email to

[Prev in Thread] Current Thread [Next in Thread]