Skip to main content

rand_poisson

Macro rand_poisson 

Source
macro_rules! rand_poisson {
    ($rng:expr, $mean:expr) => { ... };
}
Expand description

Poisson sample with the given mean.

ยงExamples

use vrd::{Random, rand_poisson};

let mut rng = Random::from_u64_seed(42);
let p = rand_poisson!(rng, 3.0);