jax.scipy.stats.expon.cdf#

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

Exponential cumulative density function.

JAX implementation of scipy.stats.expon cdf.

The cdf is defined as

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

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

Parameters:
Returns:

array of pdf values.

Return type:

Array