Module rand::distributions::normal[][src]

The normal and derived distributions.

Re-exports

use Rng;
use Rand;
use Open01;
use distributions::ziggurat;
use distributions::ziggurat_tables;
use distributions::Sample;
use distributions::IndependentSample;

Structs

LogNormal

The log-normal distribution ln N(mean, std_dev**2).

Normal

The normal distribution N(mean, std_dev**2).

StandardNormal

A wrapper around an f64 to generate N(0, 1) random numbers (a.k.a. a standard normal, or Gaussian).