Struct ndarray_rand::rand_distr::Pert
source · pub struct Pert<F>{ /* private fields */ }
Expand description
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§
source§impl<F> Pert<F>
impl<F> Pert<F>
sourcepub fn new(min: F, max: F, mode: F) -> Result<Pert<F>, PertError>
pub fn new(min: F, max: F, mode: F) -> Result<Pert<F>, PertError>
Set up the PERT distribution with defined min
, max
and mode
.
This is equivalent to calling Pert::new_shape
with shape == 4.0
.
sourcepub fn new_with_shape(
min: F,
max: F,
mode: F,
shape: F,
) -> Result<Pert<F>, PertError>
pub fn new_with_shape( min: F, max: F, mode: F, shape: F, ) -> Result<Pert<F>, PertError>
Set up the PERT distribution with defined min
, max
, mode
and
shape
.
Trait Implementations§
source§impl<F> Clone for Pert<F>where
F: Clone + Float,
StandardNormal: Distribution<F>,
Exp1: Distribution<F>,
Open01: Distribution<F>,
impl<F> Clone for Pert<F>where
F: Clone + Float,
StandardNormal: Distribution<F>,
Exp1: Distribution<F>,
Open01: Distribution<F>,
source§impl<F> Debug for Pert<F>where
F: Debug + Float,
StandardNormal: Distribution<F>,
Exp1: Distribution<F>,
Open01: Distribution<F>,
impl<F> Debug for Pert<F>where
F: Debug + Float,
StandardNormal: Distribution<F>,
Exp1: Distribution<F>,
Open01: Distribution<F>,
source§impl<F> Distribution<F> for Pert<F>
impl<F> Distribution<F> for Pert<F>
impl<F> Copy for Pert<F>where
F: Copy + Float,
StandardNormal: Distribution<F>,
Exp1: Distribution<F>,
Open01: Distribution<F>,
Auto Trait Implementations§
impl<F> Freeze for Pert<F>where
F: Freeze,
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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)