Struct rand_distr::Poisson [−][src]
pub struct Poisson<N> { /* fields omitted */ }
The Poisson distribution Poisson(lambda)
.
This distribution has a density function:
f(k) = lambda^k * exp(-lambda) / k!
for k >= 0
.
Example
use rand_distr::{Poisson, Distribution}; let poi = Poisson::new(2.0).unwrap(); let v: u64 = poi.sample(&mut rand::thread_rng()); println!("{} is from a Poisson(2) distribution", v);
Implementations
impl<N: Float> Poisson<N> where
Standard: Distribution<N>,
[src]
impl<N: Float> Poisson<N> where
Standard: Distribution<N>,
[src]Trait Implementations
impl<N: Float> Distribution<N> for Poisson<N> where
Standard: Distribution<N>,
[src]
impl<N: Float> Distribution<N> for Poisson<N> where
Standard: Distribution<N>,
[src]impl<N: Float> Distribution<u64> for Poisson<N> where
Standard: Distribution<N>,
[src]
impl<N: Float> Distribution<u64> for Poisson<N> where
Standard: Distribution<N>,
[src]impl<N: Copy> Copy for Poisson<N>
[src]
Auto Trait Implementations
impl<N> RefUnwindSafe for Poisson<N> where
N: RefUnwindSafe,
N: RefUnwindSafe,
impl<N> Send for Poisson<N> where
N: Send,
N: Send,
impl<N> Sync for Poisson<N> where
N: Sync,
N: Sync,
impl<N> Unpin for Poisson<N> where
N: Unpin,
N: Unpin,
impl<N> UnwindSafe for Poisson<N> where
N: UnwindSafe,
N: UnwindSafe,