Inhaltsverzeichnis

lgamma()

#include <cmath>

double lgamma (double x) 

Liefert den natürlichen Logarithmus vom Betrag der Gammafunktion $\ln | \Gamma(x) |$ für $x \neq -n$.

Parameter

x Gleitkommazahl ($x \neq -n$ mit $n \in \mathbb{N}$)

Ergebnis

Rückgabewert: $\ln | \Gamma(x) |$.

Siehe auch

tgamma().

Beispiel

lgamma.cpp
#include <cmath>
#include <iostream>
 
int main()
{
  std::cout << "ln Gamma(4.0) = " << std::lgamma(4.0) << '\n';
}