Struct rand_distr::Pert [−][src]
pub struct Pert<N> { /* fields omitted */ }
The PERT distribution.
Similar to the Triangular
distribution, the PERT distribution is
parameterised by a range and a mode within that range. Unlike the
Triangular
distribution, the probability density function of the PERT
distribution is smooth, with a configurable weighting around the mode.
Example
use rand_distr::{Pert, Distribution}; let d = Pert::new(0., 5., 2.5).unwrap(); let v = d.sample(&mut rand::thread_rng()); println!("{} is from a PERT distribution", v);
Implementations
impl<N: Float> Pert<N> where
StandardNormal: Distribution<N>,
Exp1: Distribution<N>,
Open01: Distribution<N>,
[src]
impl<N: Float> Pert<N> where
StandardNormal: Distribution<N>,
Exp1: Distribution<N>,
Open01: Distribution<N>,
[src]pub fn new(min: N, max: N, mode: N) -> Result<Pert<N>, PertError>
[src]
Set up the PERT distribution with defined min
, max
and mode
.
This is equivalent to calling Pert::new_shape
with shape == 4.0
.
pub fn new_with_shape(
min: N,
max: N,
mode: N,
shape: N
) -> Result<Pert<N>, PertError>
[src]
min: N,
max: N,
mode: N,
shape: N
) -> Result<Pert<N>, PertError>
Set up the PERT distribution with defined min
, max
, mode
and
shape
.
Trait Implementations
impl<N: Float> Distribution<N> for Pert<N> where
StandardNormal: Distribution<N>,
Exp1: Distribution<N>,
Open01: Distribution<N>,
[src]
impl<N: Float> Distribution<N> for Pert<N> where
StandardNormal: Distribution<N>,
Exp1: Distribution<N>,
Open01: Distribution<N>,
[src]impl<N: Copy> Copy for Pert<N>
[src]
Auto Trait Implementations
impl<N> RefUnwindSafe for Pert<N> where
N: RefUnwindSafe,
N: RefUnwindSafe,
impl<N> Send for Pert<N> where
N: Send,
N: Send,
impl<N> Sync for Pert<N> where
N: Sync,
N: Sync,
impl<N> Unpin for Pert<N> where
N: Unpin,
N: Unpin,
impl<N> UnwindSafe for Pert<N> where
N: UnwindSafe,
N: UnwindSafe,