gsl_randist__nbinomial.c 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /* randist/nbinomial.c
  2. *
  3. * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 3 of the License, or (at
  8. * your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  18. */
  19. #include "gsl__config.h"
  20. #include <math.h>
  21. #include "gsl_rng.h"
  22. #include "gsl_randist.h"
  23. #include "gsl_sf_gamma.h"
  24. /* The negative binomial distribution has the form,
  25. prob(k) = Gamma(n + k)/(Gamma(n) Gamma(k + 1)) p^n (1-p)^k
  26. for k = 0, 1, ... . Note that n does not have to be an integer.
  27. This is the Leger's algorithm (given in the answers in Knuth) */
  28. unsigned int
  29. gsl_ran_negative_binomial (const gsl_rng * r, double p, double n)
  30. {
  31. double X = gsl_ran_gamma (r, n, 1.0) ;
  32. unsigned int k = gsl_ran_poisson (r, X*(1-p)/p) ;
  33. return k ;
  34. }
  35. double
  36. gsl_ran_negative_binomial_pdf (const unsigned int k, const double p, double n)
  37. {
  38. double P;
  39. double f = gsl_sf_lngamma (k + n) ;
  40. double a = gsl_sf_lngamma (n) ;
  41. double b = gsl_sf_lngamma (k + 1.0) ;
  42. P = exp(f-a-b) * pow (p, n) * pow (1 - p, (double)k);
  43. return P;
  44. }