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

pub trait IndependentSample<Support>: Sample<Support> {
    fn ind_sample<R: Rng>(&self, _: &mut R) -> Support;
}
Deprecated since 0.5.0

: use Distribution instead

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

Deprecated since 0.5.0

: use Distribution instead

Generate a random value.

Implementors

impl IndependentSample<f64> for Exp
[src]

Deprecated since 0.5.0

: use Distribution instead

impl IndependentSample<f64> for Gamma
[src]

Deprecated since 0.5.0

: use Distribution instead

impl IndependentSample<f64> for ChiSquared
[src]

Deprecated since 0.5.0

: use Distribution instead

impl IndependentSample<f64> for FisherF
[src]

Deprecated since 0.5.0

: use Distribution instead

impl IndependentSample<f64> for StudentT
[src]

Deprecated since 0.5.0

: use Distribution instead

impl IndependentSample<f64> for Normal
[src]

Deprecated since 0.5.0

: use Distribution instead

impl IndependentSample<f64> for LogNormal
[src]

Deprecated since 0.5.0

: use Distribution instead

impl<'a, T: Clone> IndependentSample<T> for WeightedChoice<'a, T>
[src]

Deprecated since 0.5.0

: use Distribution instead

impl<T: SampleRange> IndependentSample<T> for Range<T>
[src]

Deprecated since 0.5.0

: use Distribution instead