double lgamma ( double num );
/*floating-point-type*/
lgamma ( /*floating-point-type*/ num );
float lgammaf( float num );
(2) (since C++11)long double lgammal( long double num );
(3) (since C++11)constexpr /*deduced-simd-t*/<V>
template< class Integer >
double lgamma ( Integer num );
Computes the natural logarithm of the absolute value of the
gamma functionof
num.
The library provides overloads ofstd::lgamma
for all cv-unqualified floating-point types as the type of the parameter.(since C++23)
A) Additional overloads are provided for all integer types, which are treated as double.
(since C++11) [edit] Parameters num - floating-point or integer value [edit] Return valueIf no errors occur, the value of the logarithm of the gamma function of num, that is \(\log_{e}|{\int_0^\infty t^{num-1} e^{-t} \mathsf{d}t}|\)loge|∫â
0tnum-1
e-t dt|, is returned.
If a pole error occurs, +HUGE_VAL, +HUGE_VALF
, or +HUGE_VALL
is returned.
If a range error due to overflow occurs, ±HUGE_VAL, ±HUGE_VALF
, or ±HUGE_VALL
is returned.
Errors are reported as specified in math_errhandling.
If num is zero or is an integer less than zero, a pole error may occur.
If the implementation supports IEEE floating-point arithmetic (IEC 60559),
If num is a natural number, std::lgamma(num) is the logarithm of the factorial of num - 1.
The POSIX version of lgamma
is not thread-safe: each execution of the function stores the sign of the gamma function of num in the static external variable signgam
. Some implementations provide lgamma_r
, which takes a pointer to user-provided storage for singgam
as the second parameter, and is thread-safe.
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::lgamma(num) has the same effect as std::lgamma(static_cast<double>(num)).
[edit] ExampleOutput:
lgamma(10) = 12.8018, log(9!) = 12.8018, exp(lgamma(10)) = 362880 lgamma(0.5) = 0.572365, log(sqrt(pi)) = 0.572365 lgamma(1) = 0 lgamma(+Inf) = inf lgamma(0) = inf errno == ERANGE: Numerical result out of range FE_DIVBYZERO raised[edit] See also [edit] External links
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4