jax.scipy.stats.beta.cdf#

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

Beta 累积分布函数

JAX 对 scipy.stats.beta cdf 的实现。

cdf 定义为:

\[f_{cdf}(x, a, b) = \int_{-\infty}^x f_{pdf}(y, a, b)\mathrm{d}y\]

其中 \(f_{pdf}\) 是 Beta 分布的概率密度函数,即 jax.scipy.stats.beta.pdf()

参数:
返回:

cdf 值的数组

返回类型:

Array