jax.scipy.stats.gamma.logcdf#
- jax.scipy.stats.gamma.logcdf(x, a, loc=0, scale=1)[source]#
Gamma log cumulative distribution function.
JAX implementation of
scipy.stats.gamma
logcdf
.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:
x (Array | ndarray | bool | number | bool | int | float | complex) – arraylike, value at which to evaluate the CDF
a (Array | ndarray | bool | number | bool | int | float | complex) – arraylike, distribution shape parameter
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 logcdf values.
- Return type: