Struct sgx_rand::distributions::exponential::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 sgx_rand::distributions::{Exp, IndependentSample};

let exp = Exp::new(2.0);
let v = exp.ind_sample(&mut sgx_rand::thread_rng());
println!("{} is from a Exp(2) distribution", v);

Methods

impl Exp
[src]

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

Trait Implementations

impl Clone for Exp
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Exp
[src]

impl Debug for Exp
[src]

Formats the value using the given formatter. Read more

impl Sample<f64> for Exp
[src]

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

impl IndependentSample<f64> for Exp
[src]

Generate a random value.

Auto Trait Implementations

impl Send for Exp

impl Sync for Exp