jax.scipy.special.gammasgn

内容

jax.scipy.special.gammasgn#

jax.scipy.special.gammasgn(x)[source]#

伽马函数的符号。

JAX 实现 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) – 类数组,实数。

返回值:

包含伽马函数符号的数组

返回类型:

数组

另请参阅