pub struct Exp<F>{ /* private fields */ }
Expand description
The exponential distribution Exp(lambda)
.
This distribution has density function: f(x) = lambda * exp(-lambda * x)
for x > 0
, when lambda > 0
. For lambda = 0
, all samples yield infinity.
Note that Exp1
is an optimised implementation for lambda = 1
.
§Example
use rand_distr::{Exp, Distribution};
let exp = Exp::new(2.0).unwrap();
let v = exp.sample(&mut rand::thread_rng());
println!("{} is from a Exp(2) distribution", v);
Implementations§
Trait Implementations§
Source§impl<F> Distribution<F> for Exp<F>
impl<F> Distribution<F> for Exp<F>
impl<F> Copy for Exp<F>
Auto Trait Implementations§
impl<F> Freeze for Exp<F>where
F: Freeze,
impl<F> RefUnwindSafe for Exp<F>where
F: RefUnwindSafe,
impl<F> Send for Exp<F>where
F: Send,
impl<F> Sync for Exp<F>where
F: Sync,
impl<F> Unpin for Exp<F>where
F: Unpin,
impl<F> UnwindSafe for Exp<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.