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