jax.scipy.stats.beta.cdf

目录

jax.scipy.stats.beta.cdf#

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

Beta 累积分布函数

JAX implementation of 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