pub struct Gumbel<F>{ /* private fields */ }
Expand description
Samples floating-point numbers according to the Gumbel distribution
This distribution has density function:
f(x) = exp(-(z + exp(-z))) / σ
, where z = (x - μ) / σ
,
μ
is the location parameter, and σ
the scale parameter.
§Example
use rand::prelude::*;
use rand_distr::Gumbel;
let val: f64 = thread_rng().sample(Gumbel::new(0.0, 1.0).unwrap());
println!("{}", val);
Implementations§
Trait Implementations§
Source§impl<F> Distribution<F> for Gumbel<F>
impl<F> Distribution<F> for Gumbel<F>
impl<F> Copy for Gumbel<F>
Auto Trait Implementations§
impl<F> Freeze for Gumbel<F>where
F: Freeze,
impl<F> RefUnwindSafe for Gumbel<F>where
F: RefUnwindSafe,
impl<F> Send for Gumbel<F>where
F: Send,
impl<F> Sync for Gumbel<F>where
F: Sync,
impl<F> Unpin for Gumbel<F>where
F: Unpin,
impl<F> UnwindSafe for Gumbel<F>where
F: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.