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

pub struct Gamma { /* fields omitted */ }

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)
            Γ(α)

Methods

impl Gamma[src]

pub fn set_shape(&mut self, val: f64) -> &mut Self[src]

pub fn set_rate(&mut self, val: f64) -> &mut Self[src]

impl Gamma[src]

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

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

pub fn new_unchecked(shape: f64, rate: f64) -> Self[src]

Creates a new Gamma without checking whether the parameters are valid.

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

Get the shape parameter

Example

let gam = Gamma::new(2.0, 1.0).unwrap();
assert_eq!(gam.shape(), 2.0);

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

Get the rate parameter

Example

let gam = Gamma::new(2.0, 1.0).unwrap();
assert_eq!(gam.rate(), 1.0);

Trait Implementations

impl Rv<f32> for Gamma[src]

impl Rv<f64> for Gamma[src]

impl Rv<Poisson> for Gamma[src]

impl Support<f32> for Gamma[src]

impl Support<f64> for Gamma[src]

impl Support<Poisson> for Gamma[src]

impl ContinuousDistr<f32> for Gamma[src]

impl ContinuousDistr<f64> for Gamma[src]

impl ContinuousDistr<Poisson> for Gamma[src]

impl Cdf<f32> for Gamma[src]

impl Cdf<f64> for Gamma[src]

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 ConjugatePrior<u8, Poisson> for Gamma[src]

type Posterior = Self

impl ConjugatePrior<u16, Poisson> for Gamma[src]

type Posterior = Self

impl ConjugatePrior<u32, Poisson> for Gamma[src]

type Posterior = Self

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

impl Clone for Gamma[src]

impl Default for Gamma[src]

impl PartialEq<Gamma> for Gamma[src]

impl PartialOrd<Gamma> for Gamma[src]

impl Display for Gamma[src]

impl Debug for Gamma[src]

Auto Trait Implementations

impl Send for Gamma

impl Sync for Gamma

impl Unpin for Gamma

impl UnwindSafe for Gamma

impl RefUnwindSafe for Gamma

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<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> 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> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<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>, 

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