jax.scipy.stats.beta.cdf#

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

Beta 累积分布函数

scipy.stats.beta cdf 的 JAX 实现。

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