Struct rand::distributions::exponential::Exp [] [src]

pub struct Exp {
    // some fields omitted
}
Unstable (rand)

: use rand from crates.io

The exponential distribution Exp(lambda).

This distribution has density function: f(x) = lambda * exp(-lambda * x) for x > 0.

Methods

impl Exp
[src]

fn new(lambda: f64) -> Exp

Unstable (rand)

: use rand from crates.io

Construct a new Exp with the given shape parameter lambda. Panics if lambda <= 0.

Trait Implementations

impl Sample<f64> for Exp
[src]

fn sample<R: Rng>(&mut self, rng: &mut R) -> f64

Generate a random value of Support, using rng as the source of randomness. Read more

impl IndependentSample<f64> for Exp
[src]

fn ind_sample<R: Rng>(&self, rng: &mut R) -> f64

Generate a random value.

Derived Implementations

impl Clone for Exp
[src]

fn clone(&self) -> Exp

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for Exp
[src]