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