jax.scipy.special.gammaln#
- jax.scipy.special.gammaln(x)[source]#
Natural log of the absolute value of the gamma function.
JAX implementation of
scipy.special.gammaln
.\[\mathrm{gammaln}(x) = \log(|\Gamma(x)|)\]Where \(\Gamma\) is the
gamma()
function.- Parameters:
x (ArrayLike) – arraylike, real valued.
- Returns:
array containing the values of the log-gamma function
- Return type:
See also
jax.scipy.special.gammaln()
: the natural log of the gamma functionjax.scipy.special.gammasgn()
: the sign of the gamma function
Notes
gammaln
does not support complex-valued inputs.