Struct rand_distr::Poisson
source · [−]pub struct Poisson<F>where
F: Float + FloatConst,
Standard: Distribution<F>,{ /* private fields */ }
Expand description
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 = poi.sample(&mut rand::thread_rng());
println!("{} is from a Poisson(2) distribution", v);
Implementations
sourceimpl<F> Poisson<F>where
F: Float + FloatConst,
Standard: Distribution<F>,
impl<F> Poisson<F>where
F: Float + FloatConst,
Standard: Distribution<F>,
Trait Implementations
sourceimpl<F: Clone> Clone for Poisson<F>where
F: Float + FloatConst,
Standard: Distribution<F>,
impl<F: Clone> Clone for Poisson<F>where
F: Float + FloatConst,
Standard: Distribution<F>,
sourceimpl<F: Debug> Debug for Poisson<F>where
F: Float + FloatConst,
Standard: Distribution<F>,
impl<F: Debug> Debug for Poisson<F>where
F: Float + FloatConst,
Standard: Distribution<F>,
sourceimpl<F> Distribution<F> for Poisson<F>where
F: Float + FloatConst,
Standard: Distribution<F>,
impl<F> Distribution<F> for Poisson<F>where
F: Float + FloatConst,
Standard: Distribution<F>,
sourcefn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> F
fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> F
Generate a random value of
T
, using rng
as the source of randomness.sourcefn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>ⓘNotable traits for DistIter<D, R, T>impl<D, R, T> Iterator for DistIter<D, R, T>where
D: Distribution<T>,
R: Rng, type Item = T;
where
R: Rng,
fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>ⓘNotable traits for DistIter<D, R, T>impl<D, R, T> Iterator for DistIter<D, R, T>where
D: Distribution<T>,
R: Rng, type Item = T;
where
R: Rng,
D: Distribution<T>,
R: Rng, type Item = T;
Create an iterator that generates random values of
T
, using rng
as
the source of randomness. Read moreimpl<F: Copy> Copy for Poisson<F>where
F: Float + FloatConst,
Standard: Distribution<F>,
Auto Trait Implementations
impl<F> RefUnwindSafe for Poisson<F>where
F: RefUnwindSafe,
impl<F> Send for Poisson<F>where
F: Send,
impl<F> Sync for Poisson<F>where
F: Sync,
impl<F> Unpin for Poisson<F>where
F: Unpin,
impl<F> UnwindSafe for Poisson<F>where
F: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> ToOwned for Twhere
T: Clone,
impl<T> ToOwned for Twhere
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
Uses borrowed data to replace owned data, usually by cloning. Read more