lgamma, lgammaf, lgammal

Visual Studio 2015
 

The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.

The latest version of this topic can be found at lgamma, lgammaf, lgammal.

Determines the natural logarithm of the absolute value of the gamma function of the specified value.

double lgamma(  
   double x  
);  
  
float lgamma(  
   float x  
); //C++ only  
  
long double lgamma(  
   long double x  
); //C++ only  
  
float lgammaf(  
   float x  
);  
  
long double lgammal(  
   long double x  
);  
  

Parameters

[in] x
The value to compute.

If successful, return the natural logarithm of the absolute value of the gamma function of x.

IssueReturn
x = NaNNaN
x = ±0+INFINITY
x= negative integer+INFINITY
±INFINITY+INFINITY
pole error+HUGE_VAL, +HUGE_VALF, or +HUGE_VALL
overflow range error±HUGE_VAL, ±HUGE_VALF, or ±HUGE_VALL

Errors are reported as specified in _matherr.

Because C++ allows overloading, you can call overloads of lgamma that take and return float and long double types. In a C program, lgamma always takes and returns a double.

If x is a rational number, this function returns the logarithm of the factorial of (x-1).

FunctionC headerC++ header
lgamma, lgammaf, lgammal<math.h><cmath>

For additional compatibility information, see Compatibility.

Alphabetical Function Reference
tgamma, tgammaf, tgammal

Show: