Struct rv::dist::InvGamma[][src]

pub struct InvGamma {
    pub shape: f64,
    pub scale: f64,
}

Inverse gamma distribution IG(α, β)

Fields

Methods

impl InvGamma
[src]

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

Trait Implementations

impl Debug for InvGamma
[src]

Formats the value using the given formatter. Read more

impl Clone for InvGamma
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Variance<f64> for InvGamma
[src]

Returns None if the variance is undefined

impl Entropy for InvGamma
[src]

The entropy, H(X)

impl Skewness for InvGamma
[src]

impl Kurtosis for InvGamma
[src]

impl Rv<f32> for InvGamma
[src]

Un-normalized probability function Read more

The log of the constant term in the PDF/PMF. Should not be a function of any of the parameters. Read more

Single draw from the Rv Read more

Multiple draws of the Rv Read more

Un-normalized probability function Read more

The constant term in the PDF/PMF. Should not be a function of any of the parameters. Read more

impl ContinuousDistr<f32> for InvGamma
[src]

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

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

impl Support<f32> for InvGamma
[src]

Returns true if x is in the support of the Rv Read more

impl Cdf<f32> for InvGamma
[src]

The value of the Cumulative Density Function at x Read more

Survival function, 1 - CDF(x)

impl Mean<f32> for InvGamma
[src]

Returns None if the mean is undefined

impl Mode<f32> for InvGamma
[src]

Returns None if the mode is undefined or is not a single value

impl Rv<f64> for InvGamma
[src]

Un-normalized probability function Read more

The log of the constant term in the PDF/PMF. Should not be a function of any of the parameters. Read more

Single draw from the Rv Read more

Multiple draws of the Rv Read more

Un-normalized probability function Read more

The constant term in the PDF/PMF. Should not be a function of any of the parameters. Read more

impl ContinuousDistr<f64> for InvGamma
[src]

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

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

impl Support<f64> for InvGamma
[src]

Returns true if x is in the support of the Rv Read more

impl Cdf<f64> for InvGamma
[src]

The value of the Cumulative Density Function at x Read more

Survival function, 1 - CDF(x)

impl Mean<f64> for InvGamma
[src]

Returns None if the mean is undefined

impl Mode<f64> for InvGamma
[src]

Returns None if the mode is undefined or is not a single value

Auto Trait Implementations

impl Send for InvGamma

impl Sync for InvGamma