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:
x (Array | ndarray | bool | number | bool | int | float | complex) – arraylike, value at which to evaluate the PDF
loc (Array | ndarray | bool | number | bool | int | float | complex) – arraylike, distribution offset parameter
scale (Array | ndarray | bool | number | bool | int | float | complex) – arraylike, distribution scale parameter
- Returns:
array of pdf values.
- Return type: