scipy.special.gammaln¶
-
scipy.special.gammaln(x)[source]¶ Logarithm of the absolute value of the Gamma function for real inputs.
Parameters: x : array-like
Values on the real line at which to compute
gammalnReturns: gammaln : ndarray
Values of
gammalnat x.See also
Notes
When used in conjunction with
gammasgn, this function is useful for working in logspace on the real axis without having to deal with complex numbers, via the relationexp(gammaln(x)) = gammasgn(x)*gamma(x).Note that
gammalncurrently accepts complex-valued inputs, but it is not the same function as for real-valued inputs, and the branch is not well-defined — usinggammalnwith complex is deprecated and will be disallowed in future Scipy versions.For complex-valued log-gamma, use
loggammainstead ofgammaln.