| GNU Scientific Library Reference Manual - Revised Second Edition (v1.8) by M. Galassi, J. Davies, J. Theiler, B. Gough, G. Jungman, M. Booth, F. Rossi Paperback (6"x9"), 636 pages, 60 figures ISBN 0954161734 RRP £24.99 ($39.99) |
19.33 The Negative Binomial Distribution
- Function: unsigned int gsl_ran_negative_binomial (const gsl_rng * r, double p, double n)
- This function returns a random integer from the negative binomial
distribution. The probability distribution for negative binomial variates is,
p(k) = {\Gamma(n + k) \over \Gamma(k+1) \Gamma(n) } p^n (1-p)^kNote that n is not required to be an integer and generalises the Pascal distribution.
- Function: double gsl_ran_negative_binomial_pdf (unsigned int k, double p, double n)
- This function computes the probability p(k) of obtaining k from a negative binomial distribution with parameters p and n, using the formula given above.
- Function: double gsl_cdf_negative_binomial_P (unsigned int k, double p, double n)
- Function: double gsl_cdf_negative_binomial_Q (unsigned int k, double p, double n)
- These functions compute the cumulative distribution functions P(k), Q(k) for the negative binomial distribution with parameters p and n.
| ISBN 0954161734 | GNU Scientific Library Reference Manual - Revised Second Edition (v1.8) | See the print edition |