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, Distribution}; let exp = Exp::new(2.0); let v = exp.sample(&mut rand::thread_rng()); println!("{} is from a Exp(2) distribution", v);
Methods
impl Exp[src]
impl Exppub fn new(lambda: f64) -> Exp[src]
pub fn new(lambda: f64) -> ExpConstruct a new Exp with the given shape parameter
lambda. Panics if lambda <= 0.
Trait Implementations
impl Clone for Exp[src]
impl Clone for Expfn clone(&self) -> Exp[src]
fn clone(&self) -> ExpReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Copy for Exp[src]
impl Copy for Expimpl Debug for Exp[src]
impl Debug for Expfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Distribution<f64> for Exp[src]
impl Distribution<f64> for Expfn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> f64[src]
fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> f64Generate a random value of T, using rng as the source of randomness.
ⓘImportant traits for DistIter<'a, D, R, T>fn sample_iter<'a, R>(&'a self, rng: &'a mut R) -> DistIter<'a, Self, R, T> where
Self: Sized,
R: Rng, [src]
ⓘImportant traits for DistIter<'a, D, R, T>
fn sample_iter<'a, R>(&'a self, rng: &'a mut R) -> DistIter<'a, Self, R, T> where
Self: Sized,
R: Rng, Create an iterator that generates random values of T, using rng as the source of randomness. Read more
impl Sample<f64> for Exp[src]
impl Sample<f64> for Expfn sample<R: Rng>(&mut self, rng: &mut R) -> f64[src]
fn sample<R: Rng>(&mut self, rng: &mut R) -> f64Deprecated since 0.5.0
: use Distribution instead
Generate a random value of Support, using rng as the source of randomness. Read more
impl IndependentSample<f64> for Exp[src]
impl IndependentSample<f64> for Expfn ind_sample<R: Rng>(&self, rng: &mut R) -> f64[src]
fn ind_sample<R: Rng>(&self, rng: &mut R) -> f64Deprecated since 0.5.0
: use Distribution instead
Generate a random value.