jax.scipy.special.gammasgn

目录

jax.scipy.special.gammasgn#

jax.scipy.special.gammasgn(x)[源代码][源代码]#

伽玛函数的符号。

JAX implementation of scipy.special.gammasgn.

\[\begin{split}\mathrm{gammasgn}(x) = \begin{cases} +1 & \Gamma(x) > 0 \\ -1 & \Gamma(x) < 0 \end{cases}\end{split}\]

其中 \(\Gamma\)gamma() 函数。因为 \(\Gamma(x)\) 永远不会为零,所以这种情况不需要条件。

参数:

x (ArrayLike) – 类数组,实值。

返回:

包含伽玛函数符号的数组

返回类型:

Array

参见