Processing math: 100%

chi_squared_distribution Derived Type

type, public, extends(distribution) :: chi_squared_distribution

Defines a Chi-squared distribution.


Contents


Components

Type Visibility Attributes Name Initial
integer(kind=int32), public :: dof

The number of degrees of freedom.


Type-Bound Procedures

procedure, public :: cdf => cs_cdf

  • private pure elemental function cs_cdf(this, x) result(rst)

    Computes the cumulative distribution function.

    The CDF for a Chi-squared distribution is given as F(x)=γ(k2,x2)Γ(k2).

    Arguments

    Type IntentOptional Attributes Name
    class(chi_squared_distribution), intent(in) :: this

    The chi_squared_distribution object.

    real(kind=real64), intent(in) :: x

    The value at which to evaluate the function.

    Return Value real(kind=real64)

    The value of the function.

procedure, public :: defined_range => cs_range

  • private pure function cs_range(this) result(rst)

    Gets the defined range for the distribution.

    Arguments

    Type IntentOptional Attributes Name
    class(chi_squared_distribution), intent(in) :: this

    The chi_squared_distribution object.

    Return Value real(kind=real64), dimension(2)

    The defined range of the probability distributions [0, infinity). As using a value of infinity may cause issue, this routine returns huge(0.0d0) instead.

procedure, public :: mean => cs_mean

  • private pure function cs_mean(this) result(rst)

    Computes the mean of the distribution.

    Arguments

    Type IntentOptional Attributes Name
    class(chi_squared_distribution), intent(in) :: this

    The chi_squared_distribution object.

    Return Value real(kind=real64)

    The mean.

procedure, public :: median => cs_median

  • private pure function cs_median(this) result(rst)

    Computes the median of the distribution.

    Arguments

    Type IntentOptional Attributes Name
    class(chi_squared_distribution), intent(in) :: this

    The chi_squared_distribution object.

    Return Value real(kind=real64)

    The median.

procedure, public :: mode => cs_mode

  • private pure function cs_mode(this) result(rst)

    Computes the mode of the distribution.

    Arguments

    Type IntentOptional Attributes Name
    class(chi_squared_distribution), intent(in) :: this

    The chi_squared_distribution object.

    Return Value real(kind=real64)

    The mode.

procedure, public :: pdf => cs_pdf

  • private pure elemental function cs_pdf(this, x) result(rst)

    Computes the probability density function.

    The PDF for a Chi-squared distribution is given as f(x)=xk/21expx/22k/2Γ(k2).

    Arguments

    Type IntentOptional Attributes Name
    class(chi_squared_distribution), intent(in) :: this

    The chi_squared_distribution object.

    real(kind=real64), intent(in) :: x

    The value at which to evaluate the function.

    Return Value real(kind=real64)

    The value of the function.

procedure, public :: recenter => cs_recenter

  • private subroutine cs_recenter(this, x)

    Recenters the distribution about the supplied value.

    Arguments

    Type IntentOptional Attributes Name
    class(chi_squared_distribution), intent(inout) :: this

    The chi_squared_distribution object.

    real(kind=real64), intent(in) :: x

    The value about which to recenter.

procedure, public :: standardized_variable => dist_std_var

  • private pure elemental function dist_std_var(this, x) result(rst)

    Computes the standardized variable for the distribution.

    Arguments

    Type IntentOptional Attributes Name
    class(distribution), intent(in) :: this

    The distribution object.

    real(kind=real64), intent(in) :: x

    The value of interest.

    Return Value real(kind=real64)

    The result.

procedure, public :: variance => cs_variance

  • private pure function cs_variance(this) result(rst)

    Computes the variance of the distribution.

    Arguments

    Type IntentOptional Attributes Name
    class(chi_squared_distribution), intent(in) :: this

    The chi_squared_distribution object.

    Return Value real(kind=real64)

    The variance.