mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
gamma.hpp
Go to the documentation of this file.
1/** \file gamma.hpp
2 * \brief Declares and defines the gamma function.
3 * \ingroup gen_math_files
4 * \author Jared R. Males (jaredmales@gmail.com)
5 *
6 */
7
8//***********************************************************************//
9// Copyright 2020 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 mx_gamma_hpp
28#define mx_gamma_hpp
29
30#include <type_traits>
31
32#ifdef MX_INCLUDE_BOOST
33#include <boost/math/special_functions/gamma.hpp>
34#endif
35
36namespace mx
37{
38namespace math
39{
40namespace func
41{
42
43/// The Gamma Function
44/** This is a wrapper for boost.
45 *
46 * \tparam T a real floating point type
47 *
48 * \returns the value of the Gamma Function.
49 *
50 * \ingroup gen_math_gamma
51 */
52template <typename T>
53T tgamma( T x /**< [in] the argument of the gamma function*/ )
54{
55#ifdef MX_INCLUDE_BOOST
56 return boost::math::tgamma<T>( x );
57#else
58 static_assert(
59 std::is_fundamental<T>::value || !std::is_fundamental<T>::value,
60 "tgamma<T> not specialized for type T, and MX_INCLUDE_BOOST is not defined, so I can't just use boost." );
61 return 0;
62#endif
63}
64
65template <>
66float tgamma<float>( float x );
67
68template <>
69double tgamma<double>( double x );
70
71template <>
72long double tgamma<long double>( long double x );
73
74#ifdef HASQUAD
75template <>
76__float128 tgamma<__float128>( __float128 x );
77#endif
78
79} // namespace func
80} // namespace math
81} // namespace mx
82
83#endif // mx_gamma_hpp
T tgamma(T x)
The Gamma Function.
Definition gamma.hpp:53
constexpr floatT six_fifths()
Return 6/5 in the specified precision.
The mxlib c++ namespace.
Definition mxError.hpp:106