Function rgsl::randist::pascal::pascal

source ·
pub fn pascal(r: &mut Rng, p: f64, n: u32) -> u32
Expand description

This function returns a random integer from the Pascal distribution. The Pascal distribution is simply a negative binomial distribution with an integer value of n.

p(k) = {(n + k - 1)! \over k! (n - 1)! } p^n (1-p)^k

for k >= 0