jax.scipy.stats.gamma.pdf

目录

jax.scipy.stats.gamma.pdf#

jax.scipy.stats.gamma.pdf(x, a, loc=0, scale=1)[源代码][源代码]#

Gamma 概率分布函数。

JAX implementation of scipy.stats.gamma pdf.

Gamma 概率分布由以下公式给出

\[f(x, a) = \frac{1}{\Gamma(a)}x^{a-1}e^{-x}\]

其中 \(\Gamma(a)\)gamma() 函数。它定义在 \(x \ge 0\)\(a > 0\) 的条件下。

参数:
返回:

pdf 值的数组。

返回类型:

Array