[][src]Struct probability::prelude::Pert

pub struct Pert { /* fields omitted */ }

A PERT distribution.

Methods

impl Pert[src]

pub fn new(a: f64, b: f64, c: f64) -> Self[src]

Create a PERT distribution with parameters a, b, and c.

It should hold that a < b < c.

pub fn a(&self) -> f64[src]

Return the first parameter.

pub fn b(&self) -> f64[src]

Return the second parameter.

pub fn c(&self) -> f64[src]

Return the third parameter.

pub fn alpha(&self) -> f64[src]

Return the first shape parameter of the corresponding Beta distribution.

pub fn beta(&self) -> f64[src]

Return the second shape parameter of the corresponding Beta distribution.

Trait Implementations

impl Continuous for Pert[src]

impl Distribution for Pert[src]

type Value = f64

The type of outcomes.

impl Entropy for Pert[src]

impl Inverse for Pert[src]

impl Kurtosis for Pert[src]

impl Mean for Pert[src]

impl Median for Pert[src]

impl Modes for Pert[src]

impl Sample for Pert[src]

impl Skewness for Pert[src]

impl Variance for Pert[src]

fn deviation(&self) -> f64[src]

Compute the standard deviation.

impl Clone for Pert[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Copy for Pert[src]

impl Debug for Pert[src]

Auto Trait Implementations

impl Send for Pert

impl Sync for Pert

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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