jax.scipy.stats.beta.cdf

Contents

jax.scipy.stats.beta.cdf#

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

Beta cumulative distribution function

JAX implementation of scipy.stats.beta cdf.

The cdf is defined as

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

where \(f_{pdf}\) is the beta distribution probability density function, jax.scipy.stats.beta.pdf().

Parameters:
Returns:

array of cdf values

Return type:

Array