[][src]Struct rv::dist::Gamma

pub struct Gamma {
    pub shape: f64,
    pub rate: f64,
}

Gamma distribution G(α, β) over x in (0, ∞).

NOTE: The gamma distribution is parameterized in terms of shape, α, and rate, β.

            β^α
f(x|α, β) = ----  x^(α-1) e^(-βx)
            Γ(α)

Fields

shape: f64rate: f64

Methods

impl Gamma[src]

pub fn new(shape: f64, rate: f64) -> Result<Self>[src]

Create a new Gamma distribution with shape (α) and rate (β).

Trait Implementations

impl Rv<f32> for Gamma[src]

fn f(&self, x: &X) -> f64[src]

Probability function Read more

impl Rv<f64> for Gamma[src]

fn f(&self, x: &X) -> f64[src]

Probability function Read more

impl Support<f32> for Gamma[src]

impl Support<f64> for Gamma[src]

impl ContinuousDistr<f32> for Gamma[src]

fn pdf(&self, x: &X) -> f64[src]

The value of the Probability Density Function (PDF) at x Read more

fn ln_pdf(&self, x: &X) -> f64[src]

The value of the log Probability Density Function (PDF) at x Read more

impl ContinuousDistr<f64> for Gamma[src]

fn pdf(&self, x: &X) -> f64[src]

The value of the Probability Density Function (PDF) at x Read more

fn ln_pdf(&self, x: &X) -> f64[src]

The value of the log Probability Density Function (PDF) at x Read more

impl Cdf<f32> for Gamma[src]

fn sf(&self, x: &X) -> f64[src]

Survival function, 1 - CDF(x)

impl Cdf<f64> for Gamma[src]

fn sf(&self, x: &X) -> f64[src]

Survival function, 1 - CDF(x)

impl Mean<f32> for Gamma[src]

impl Mean<f64> for Gamma[src]

impl Mode<f32> for Gamma[src]

impl Mode<f64> for Gamma[src]

impl Variance<f64> for Gamma[src]

impl Entropy for Gamma[src]

impl Skewness for Gamma[src]

impl Kurtosis for Gamma[src]

impl PartialOrd<Gamma> for Gamma[src]

impl<'_> From<&'_ Gamma> for String[src]

impl PartialEq<Gamma> for Gamma[src]

impl Clone for Gamma[src]

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

Performs copy-assignment from source. Read more

impl Default for Gamma[src]

impl Display for Gamma[src]

impl Debug for Gamma[src]

Auto Trait Implementations

impl Send for Gamma

impl Sync for Gamma

Blanket Implementations

impl<T> ApiReady for T where
    T: Clone + Debug + PartialOrd<T> + PartialEq<T>, 
[src]

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

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]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>,