Struct rand::distributions::Exp  
                   
                       [−]
                   
               [src]
pub struct Exp { /* fields omitted */ }The exponential distribution Exp(lambda).
This distribution has density function: f(x) = lambda * exp(-lambda * x) for x > 0.
Example
use rand::distributions::{Exp, IndependentSample}; let exp = Exp::new(2.0); let v = exp.ind_sample(&mut rand::thread_rng()); println!("{} is from a Exp(2) distribution", v);
Methods
impl Exp[src]
pub fn new(lambda: f64) -> Exp[src]
Construct a new Exp with the given shape parameter
lambda. Panics if lambda <= 0.
Trait Implementations
impl Debug for Exp[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>[src]
Formats the value using the given formatter. Read more
impl IndependentSample<f64> for Exp[src]
fn ind_sample<R>(&self, rng: &mut R) -> f64 where
    R: Rng, [src]
R: Rng,
Generate a random value.
impl Copy for Exp[src]
impl Clone for Exp[src]
fn clone(&self) -> Exp[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more