std::tgamma, std::tgammaf, std::tgammal

Header: <cmath>

1-3) Computes the gamma function of num.The library provides overloads of std::tgamma for all cv-unqualified floating-point types as the type of the parameter.(since C++23)

# Declarations

float tgamma ( float num );
double tgamma ( double num );
long double tgamma ( long double num );

(until C++23)

/*floating-point-type*/
tgamma ( /*floating-point-type*/ num );

(since C++23) (constexpr since C++26)

float tgammaf( float num );

(since C++11) (constexpr since C++26)

long double tgammal( long double num );

(since C++11) (constexpr since C++26)

SIMD overload (since C++26)
template< /*math-floating-point*/ V >
constexpr /*deduced-simd-t*/<V>
tgamma ( const V& v_num );

(since C++26)

Additional overloads (since C++11)
template< class Integer >
double tgamma ( Integer num );

(constexpr since C++26)

# Parameters

# Return value

If no errors occur, the value of the gamma function of num, that is (\Gamma(\mathtt{num}) = \displaystyle\int_0^\infty!! t^{\mathtt{num}-1} e^{-t}, dt)∫∞0tnum-1 e-t dt, is returned.

# Notes

If num is a natural number, std::tgamma(num) is the factorial of num - 1. Many implementations calculate the exact integer-domain factorial if the argument is a sufficiently small integer.

For IEEE-compatible type double, overflow happens if 0 < num && num < 1 / DBL_MAX or if num > 171.7.

POSIX requires that a pole error occurs if the argument is zero, but a domain error occurs when the argument is a negative integer. It also specifies that in future, domain errors may be replaced by pole errors for negative integer arguments (in which case the return value in those cases would change from NaN to ±∞).

There is a non-standard function named gamma in various implementations, but its definition is inconsistent. For example, glibc and 4.2BSD version of gamma executes lgamma, but 4.4BSD version of gamma executes tgamma.

The additional overloads are not required to be provided exactly as (A). They only need to be sufficient to ensure that for their argument num of integer type, std::tgamma(num) has the same effect as std::tgamma(static_cast(num)).

# Example

#include <cerrno>
#include <cfenv>
#include <cmath>
#include <cstring>
#include <iostream>
// #pragma STDC FENV_ACCESS ON
 
int main()
{
    std::cout << "tgamma(10) = " << std::tgamma(10)
              << ", 9! = " << 2 * 3 * 4 * 5 * 6 * 7 * 8 * 9 << '\n'
              << "tgamma(0.5) = " << std::tgamma(0.5)
              << ", sqrt(pi) = " << std::sqrt(std::acos(-1)) << '\n';
 
    // special values
    std::cout << "tgamma(1) = " << std::tgamma(1) << '\n'
              << "tgamma(+Inf) = " << std::tgamma(INFINITY) << '\n';
 
    // error handling
    errno = 0;
    std::feclearexcept(FE_ALL_EXCEPT);
 
    std::cout << "tgamma(-1) = " << std::tgamma(-1) << '\n';
 
    if (errno == EDOM)
        std::cout << "    errno == EDOM: " << std::strerror(errno) << '\n';
    if (std::fetestexcept(FE_INVALID))
        std::cout << "    FE_INVALID raised\n";
}

# See also