pub struct Exp1;Expand description
The standard exponential distribution Exp(1).
This is equivalent to Exp::new(1.0) or sampling with
-rng.gen::<f64>().ln(), but faster.
See Exp for the general exponential distribution.
§Plot
The following plot illustrates the exponential distribution with λ = 1.
§Example
use rand::prelude::*;
use rand_distr::Exp1;
let val: f64 = rand::rng().sample(Exp1);
println!("{}", val);§Notes
Implemented via the ZIGNOR variant1 of the Ziggurat method. The exact description in the paper was adjusted to use tables for the exponential distribution rather than normal.
Jurgen A. Doornik (2005). An Improved Ziggurat Method to Generate Normal Random Samples. Nuffield College, Oxford ↩
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Exp1
 
impl<'de> Deserialize<'de> for Exp1
Source§fn deserialize<__D>(
    __deserializer: __D,
) -> Result<Exp1, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(
    __deserializer: __D,
) -> Result<Exp1, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Distribution<f32> for Exp1
 
impl Distribution<f32> for Exp1
Source§impl Distribution<f64> for Exp1
 
impl Distribution<f64> for Exp1
Source§impl Serialize for Exp1
 
impl Serialize for Exp1
Source§fn serialize<__S>(
    &self,
    __serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
    __S: Serializer,
 
fn serialize<__S>(
    &self,
    __serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
    __S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for Exp1
Auto Trait Implementations§
impl Freeze for Exp1
impl RefUnwindSafe for Exp1
impl Send for Exp1
impl Sync for Exp1
impl Unpin for Exp1
impl UnwindSafe for Exp1
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> CallInPlace<T> for Twhere
    T: CallInto<T>,
 
impl<T> CallInPlace<T> for Twhere
    T: CallInto<T>,
Source§fn call_inplace<F>(&mut self, f: F) -> <T as CallInto<T>>::Output
 
fn call_inplace<F>(&mut self, f: F) -> <T as CallInto<T>>::Output
The 
call_on_mut method allows an object to be passed onto a function that takes a mutable reference
to the object. This is useful for cases where you want to perform an operation on
an object and mutate it in the process.Source§impl<T> CallInto<T> for T
 
impl<T> CallInto<T> for T
Source§impl<T> CallOn<T> for Twhere
    T: CallInto<T>,
 
impl<T> CallOn<T> for Twhere
    T: CallInto<T>,
Source§fn call_on<F>(&self, f: F) -> <T as CallInto<T>>::Output
 
fn call_on<F>(&self, f: F) -> <T as CallInto<T>>::Output
The 
call_on method allows an object to be passed onto a function that takes a reference
to the object. This is useful for cases where you want to perform an operation on
an object without needing to extract it from a container or context.