Struct rand_distr::StandardGeometric
source · [−]pub struct StandardGeometric;
Expand description
Samples integers according to the geometric distribution with success
probability p = 0.5
. This is equivalent to Geometeric::new(0.5)
,
but faster.
See Geometric
for the general geometric distribution.
Implemented via iterated [Rng::gen::
Example
use rand::prelude::*;
use rand_distr::StandardGeometric;
let v = StandardGeometric.sample(&mut thread_rng());
println!("{} is from a Geometric(0.5) distribution", v);
Trait Implementations
Generate a random value of T
, using rng
as the source of randomness.
fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>ⓘ where
R: Rng,
fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T>ⓘ where
R: Rng,
Create an iterator that generates random values of T
, using rng
as
the source of randomness. Read more
Auto Trait Implementations
impl RefUnwindSafe for StandardGeometric
impl Send for StandardGeometric
impl Sync for StandardGeometric
impl Unpin for StandardGeometric
impl UnwindSafe for StandardGeometric
Blanket Implementations
Mutably borrows from an owned value. Read more