Struct ndarray_rand::rand_distr::Pert[][src]

pub struct Pert<F> where
    F: Float,
    StandardNormal: Distribution<F>,
    Exp1: Distribution<F>,
    Open01: Distribution<F>, 
{ /* 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<F> Pert<F> where
    F: Float,
    StandardNormal: Distribution<F>,
    Exp1: Distribution<F>,
    Open01: Distribution<F>, 
[src]

pub fn new(min: F, max: F, mode: F) -> Result<Pert<F>, 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: F,
    max: F,
    mode: F,
    shape: F
) -> Result<Pert<F>, PertError>
[src]

Set up the PERT distribution with defined min, max, mode and shape.

Trait Implementations

impl<F> Clone for Pert<F> where
    F: Clone + Float,
    StandardNormal: Distribution<F>,
    Exp1: Distribution<F>,
    Open01: Distribution<F>, 
[src]

impl<F> Copy for Pert<F> where
    F: Copy + Float,
    StandardNormal: Distribution<F>,
    Exp1: Distribution<F>,
    Open01: Distribution<F>, 
[src]

impl<F> Debug for Pert<F> where
    F: Debug + Float,
    StandardNormal: Distribution<F>,
    Exp1: Distribution<F>,
    Open01: Distribution<F>, 
[src]

impl<F> Distribution<F> for Pert<F> where
    F: Float,
    StandardNormal: Distribution<F>,
    Exp1: Distribution<F>,
    Open01: Distribution<F>, 
[src]

Auto Trait Implementations

impl<F> RefUnwindSafe for Pert<F> where
    F: RefUnwindSafe

impl<F> Send for Pert<F> where
    F: Send

impl<F> Sync for Pert<F> where
    F: Sync

impl<F> Unpin for Pert<F> where
    F: Unpin

impl<F> UnwindSafe for Pert<F> where
    F: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,