Trait rand::distributions::IndependentSample [] [src]

pub trait IndependentSample<Support>: Sample<Support> {
    fn ind_sample<R: Rng>(&self, _: &mut R) -> Support;
}
🔬 This is a nightly-only experimental API. (rand)

use rand from crates.io

Samples that do not require keeping track of state.

Since no state is recorded, each sample is (statistically) independent of all others, assuming the Rng used has this property.

Required Methods

🔬 This is a nightly-only experimental API. (rand)

use rand from crates.io

Generate a random value.

Implementors