Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      lgamma, lgammaf, lgammal

      From cppreference.com
      <c‎ |numeric‎ |math
       
       
       
      Common mathematical functions
      Functions
      Basic operations
      (C99)
      (C99)
      (C99)
      (C99)(C99)(C99)(C23)
      Maximum/minimum operations
      (C99)
      (C99)
      Exponential functions
      (C23)
      (C99)
      (C99)
      (C23)
      (C23)

      (C99)
      (C99)(C23)
      (C23)
      (C23)
      Power functions
      (C99)
      (C23)
      (C23)

      (C99)
      (C23)
      (C23)
      Trigonometric and hyperbolic functions
      (C23)
      (C23)
      (C23)
      (C23)
      (C99)
      (C99)
      (C99)
      Nearest integer floating-point
      (C99)(C99)(C99)
      (C23)(C23)(C23)(C23)
      Floating-point manipulation
      (C99)(C99)
      (C99)(C23)
      (C99)
      Narrowing operations
      (C23)
      (C23)
      (C23)
      (C23)
      (C23)
      (C23)
      Quantum and quantum exponent
      Decimal re-encoding functions
      Total order and payload functions
      Classification
      Error and gamma functions
      (C99)
      (C99)
      lgamma
      (C99)
      (C99)
      Types
      Macro constants
      Special floating-point values
      (C99)(C23)
      Arguments and return values
      Error handling
      Fast operation indicators
       
      Defined in header<math.h>
      float       lgammaf(float arg);
      (1)(since C99)
      double      lgamma(double arg);
      (2)(since C99)
      longdouble lgammal(longdouble arg);
      (3)(since C99)
      Defined in header<tgmath.h>
      #define lgamma( arg )
      (4)(since C99)
      1-3) Computes the natural logarithm of the absolute value of thegamma function ofarg.
      4) Type-generic macro: Ifarg has typelongdouble,lgammal is called. Otherwise, ifarg has integer type or the typedouble,lgamma is called. Otherwise,lgammaf is called.

      Contents

      [edit]Parameters

      arg - floating-point value

      [edit]Return value

      If no errors occur, the value of the logarithm of the gamma function ofarg, that is\(\log_{e}|{\int_0^\infty t^{arg-1} e^{-t} \mathsf{d}t}|\)loge|
      0
      targ-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.

      [edit]Error handling

      Errors are reported as specified inmath_errhandling.

      Ifarg 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 the argument is 1, +0 is returned.
      • If the argument is 2, +0 is returned.
      • If the argument is ±0, +∞ is returned andFE_DIVBYZERO is raised.
      • If the argument is a negative integer, +∞ is returned andFE_DIVBYZERO is raised.
      • If the argument is ±∞, +∞ is returned.
      • If the argument is NaN, NaN is returned.

      [edit]Notes

      Ifarg is a natural number,lgamma(arg) is the logarithm of the factorial ofarg-1.

      ThePOSIX version oflgamma is not thread-safe: each execution of the function stores the sign of the gamma function ofarg in the static external variablesigngam. Some implementations providelgamma_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 namedgamma in various implementations, but its definition is inconsistent. For example, glibc and 4.2BSD version ofgamma executeslgamma, but 4.4BSD version ofgamma executestgamma.

      [edit]Example

      Run this code
      #include <errno.h>#include <fenv.h>#include <float.h>#include <math.h>#include <stdio.h>// #pragma STDC FENV_ACCESS ON int main(void){printf("lgamma(10) = %f, log(9!) = %f\n", lgamma(10),log(2*3*4*5*6*7*8*9));constdouble pi=acos(-1);printf("lgamma(0.5) = %f, log(sqrt(pi)) = %f\n",log(sqrt(pi)), lgamma(0.5));// special valuesprintf("lgamma(1) = %f\n", lgamma(1));printf("lgamma(+Inf) = %f\n", lgamma(INFINITY)); // error handlingerrno=0;feclearexcept(FE_ALL_EXCEPT);printf("lgamma(0) = %f\n", lgamma(0));if(errno==ERANGE)perror("    errno == ERANGE");if(fetestexcept(FE_DIVBYZERO))puts("    FE_DIVBYZERO raised");}

      Possible output:

      lgamma(10) = 12.801827, log(9!) = 12.801827lgamma(0.5) = 0.572365, log(sqrt(pi)) = 0.572365lgamma(1) = 0.000000lgamma(+Inf) = inflgamma(0) = inf    errno == ERANGE: Numerical result out of range    FE_DIVBYZERO raised

      [edit]References

      • C23 standard (ISO/IEC 9899:2024):
      • 7.12.8.3 The lgamma functions (p: TBD)
      • 7.25 Type-generic math <tgmath.h> (p: TBD)
      • F.10.5.3 The lgamma functions (p: TBD)
      • C17 standard (ISO/IEC 9899:2018):
      • 7.12.8.3 The lgamma functions (p: 182)
      • 7.25 Type-generic math <tgmath.h> (p: 272-273)
      • F.10.5.3 The lgamma functions (p: 383)
      • C11 standard (ISO/IEC 9899:2011):
      • 7.12.8.3 The lgamma functions (p: 250)
      • 7.25 Type-generic math <tgmath.h> (p: 373-375)
      • F.10.5.3 The lgamma functions (p: 525)
      • C99 standard (ISO/IEC 9899:1999):
      • 7.12.8.3 The lgamma functions (p: 231)
      • 7.22 Type-generic math <tgmath.h> (p: 335-337)
      • F.9.5.3 The lgamma functions (p: 462)

      [edit]See also

      (C99)(C99)(C99)
      computes gamma function
      (function)[edit]

      [edit]External links

      Weisstein, Eric W. "Log Gamma Function." From MathWorld — A Wolfram Web Resource.
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=c/numeric/math/lgamma&oldid=172041"

      [8]ページ先頭

      ©2009-2025 Movatter.jp