Struct std::rand::distributions::Exp
[−]
[src]
pub struct Exp {
lambda_inverse: f64,
}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.
Fields
lambda_inverse | Unstable ( rand): use
|
Methods
impl Exp
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.