Trait rand::distributions::IndependentSample
[−]
[src]
pub trait IndependentSample<Support>: Sample<Support> { fn ind_sample<R: Rng>(&self, &mut R) -> Support; }
Sample
s 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
fn ind_sample<R: Rng>(&self, &mut R) -> Support
Generate a random value.
Implementors
impl<Sup: SampleRange> IndependentSample<Sup> for Range<Sup>
impl IndependentSample<f64> for Gamma
impl IndependentSample<f64> for ChiSquared
impl IndependentSample<f64> for FisherF
impl IndependentSample<f64> for StudentT
impl IndependentSample<f64> for Normal
impl IndependentSample<f64> for LogNormal
impl IndependentSample<f64> for Exp
impl<Sup: Rand> IndependentSample<Sup> for RandSample<Sup>
impl<'a, T: Clone> IndependentSample<T> for WeightedChoice<'a, T>