Struct std::rand::distributions::Normal [] [src]

pub struct Normal {
    mean: f64,
    std_dev: f64,
}
Unstable (rand)

: use rand from crates.io

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

This uses the ZIGNOR variant of the Ziggurat method, see StandardNormal for more details.

Fields

mean
Unstable (rand)

: use rand from crates.io

std_dev
Unstable (rand)

: use rand from crates.io

Methods

impl Normal

fn new(mean: f64, std_dev: f64) -> Normal

Unstable (rand)

: use rand from crates.io

Construct a new Normal distribution with the given mean and standard deviation.

Panics

Panics if std_dev < 0.

Trait Implementations

impl Sample<f64> for Normal

fn sample<R>(&mut self, rng: &mut R) -> f64 where R: Rng

impl IndependentSample<f64> for Normal

fn ind_sample<R>(&self, rng: &mut R) -> f64 where R: Rng

Derived Implementations

impl Clone for Normal

fn clone(&self) -> Normal

fn clone_from(&mut self, source: &Self)

impl Copy for Normal