jax.scipy.stats.expon.logcdf#
- jax.scipy.stats.expon.logcdf(x, loc=0, scale=1)[source]#
Exponential log cumulative density function.
JAX implementation of
scipy.stats.expon
logcdf
.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: