jax.scipy.stats.gamma.cdf

Contents

jax.scipy.stats.gamma.cdf#

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

Gamma cumulative distribution function.

JAX implementation of scipy.stats.gamma cdf.

The cdf is defined as

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

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

Parameters:
Returns:

array of cdf values.

Return type:

Array