27#ifndef gammaDistribution_hpp
28#define gammaDistribution_hpp
50template <
typename realT>
59 if( !std::isnormal(
d ) )
60 return std::numeric_limits<realT>::max();
66 return std::numeric_limits<realT>::max();
79template <
typename realT>
90 realT v =
pow( x - x0, k - 1 ) *
exp( -( x - x0 ) /
q ) / denom;
92 if( !std::isnormal( v ) )
107template <
typename realT>
127template <
typename realT>
133 return x0 + k * theta;
145template <
typename realT>
152 return x0 + ( k - 1 ) * theta;
166template <
typename realT>
171 return k * theta * theta;
Declares and defines the gamma function.
realT gammaDistributionMode(realT x0, realT k, realT theta)
The mode of the Gamma Distribution.
realT gammaDistributionDenom(realT k, realT q)
The denominator of the Gamma Distribution.
realT gammaDistributionVariance(realT k, realT theta)
The variance of the Gamma Distribution.
realT gammaDistributionMean(realT x0, realT k, realT theta)
The mean of the Gamma Distribution.
realT gammaDistribution(realT x, realT x0, realT k, realT q, realT denom)
The general shifted Gamma Distribution at a point using an arbitrary peak scaling parameter.
constexpr floatT six_fifths()
Return 6/5 in the specified precision.