mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
gammaDistribution.hpp
Go to the documentation of this file.
1/** \file gammaDistribution.hpp
2 * \brief The Gamma Distribution.
3 * \ingroup gen_math_files
4 * \author Jared R. Males (jaredmales@gmail.com)
5 *
6 */
7
8//***********************************************************************//
9// Copyright 2023 Jared R. Males (jaredmales@gmail.com)
10//
11// This file is part of mxlib.
12//
13// mxlib is free software: you can redistribute it and/or modify
14// it under the terms of the GNU General Public License as published by
15// the Free Software Foundation, either version 3 of the License, or
16// (at your option) any later version.
17//
18// mxlib is distributed in the hope that it will be useful,
19// but WITHOUT ANY WARRANTY; without even the implied warranty of
20// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21// GNU General Public License for more details.
22//
23// You should have received a copy of the GNU General Public License
24// along with mxlib. If not, see <http://www.gnu.org/licenses/>.
25//***********************************************************************//
26
27#ifndef gammaDistribution_hpp
28#define gammaDistribution_hpp
29
30#include <cmath>
31
32#include "gamma.hpp"
33
34namespace mx
35{
36namespace math
37{
38namespace func
39{
40
41/// The denominator of the Gamma Distribution
42/** Can be used to avoid repeated calculations when the parameters are constant
43 *
44 * \tparam realT a real floating point type
45 *
46 * \returns the denominator of the Gamma Distribution.
47 *
48 * \ingroup gen_math_gammaDist
49 */
50template <typename realT>
51realT gammaDistributionDenom( realT k, ///< [in] shape parameter
52 realT q ///< [in] the scale parameter
53)
54{
55 try
56 {
57 realT d = pow( q, k ) * tgamma<realT>( k );
58
59 if( !std::isnormal( d ) )
60 return std::numeric_limits<realT>::max();
61
62 return d;
63 }
64 catch( ... )
65 {
66 return std::numeric_limits<realT>::max();
67 }
68}
69
70/// The general shifted Gamma Distribution at a point using an arbitrary peak scaling parameter
71/** Calculates the value of the Gamma Distribution at a location specified by x.
72 *
73 * \tparam realT a real floating point type
74 *
75 * \returns the value of the Gamma distribution at x.
76 *
77 * \ingroup gen_math_gammaDist
78 */
79template <typename realT>
80realT gammaDistribution( realT x, ///< [in] the location at which to calculate the distribution
81 realT x0, ///< [in] the location parameter
82 realT k, ///< [in] shape parameter
83 realT q, ///< [in] the scale parameter
84 realT denom ///< [in] the denominator, or 1/peak-scale.
85)
86{
87 if( x - x0 < 0 )
88 return 0;
89
90 realT v = pow( x - x0, k - 1 ) * exp( -( x - x0 ) / q ) / denom;
91
92 if( !std::isnormal( v ) )
93 return 0;
94
95 return v;
96}
97
98/// The general shifted Gamma Distribution at a point.
99/** Calculates the value of the Gamma Distribution at a location specified by x.
100 *
101 * \tparam realT a real floating point type
102 *
103 * \returns the value of the Gamma distribution at x.
104 *
105 * \ingroup gen_math_gammaDist
106 */
107template <typename realT>
108realT gammaDistribution( realT x, ///< [in] the location at which to calculate the distribution
109 realT x0, ///< [in] the location parameter
110 realT k, ///< [in] shape parameter
111 realT q ///< [in] the scale parameter
112)
113{
114
116}
117
118/// The mean of the Gamma Distribution
119/** Calculates the mean of the Gamma Distribution for the given parameters.
120 *
121 * \tparam realT a real floating point type
122 *
123 * \returns the mean of the Gamma Distribution.
124 *
125 * \ingroup gen_math_gammaDist
126 */
127template <typename realT>
128realT gammaDistributionMean( realT x0, ///< [in] the location parameter
129 realT k, ///< [in] shape parameter
130 realT theta ///< [in] the scale parameter
131)
132{
133 return x0 + k * theta;
134}
135
136/// The mode of the Gamma Distribution
137/** Calculates the mode of the Gamma Distribution for the given parameters.
138 *
139 * \tparam realT a real floating point type
140 *
141 * \returns the mode of the Gamma Distribution.
142 *
143 * \ingroup gen_math_gammaDist
144 */
145template <typename realT>
146realT gammaDistributionMode( realT x0, ///< [in] the location parameter
147 realT k, ///< [in] shape parameter
148 realT theta ///< [in] the scale parameter
149)
150{
151 if( k >= 1 )
152 return x0 + ( k - 1 ) * theta;
153
154 return 0;
155}
156
157/// The variance of the Gamma Distribution
158/** Calculates the variance of the Gamma Distribution for the given parameters.
159 *
160 * \tparam realT a real floating point type
161 *
162 * \returns the variance of the Gamma Distribution.
163 *
164 * \ingroup gen_math_gammaDist
165 */
166template <typename realT>
167realT gammaDistributionVariance( realT k, ///< [in] shape parameter
168 realT theta ///< [in] the scale parameter
169)
170{
171 return k * theta * theta;
172}
173
174} // namespace func
175} // namespace math
176} // namespace mx
177
178#endif // gammaDistribution_hpp
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.
The mxlib c++ namespace.
Definition mxError.hpp:106