Module rand::distributions::exponential [] [src]

Unstable (rand)

: use rand from crates.io

The exponential distribution.

Reexports

use core::prelude::v1::*;
use FloatMath;
use ::{Rng, Rand};
use distributions::{ziggurat, ziggurat_tables, Sample, IndependentSample};

Structs

Exp [Unstable]

The exponential distribution Exp(lambda).

Exp1 [Unstable]

A wrapper around an f64 to generate Exp(1) random numbers.