jax.scipy.stats.logistic.cdf#
- jax.scipy.stats.logistic.cdf(x, loc=0, scale=1)[source]#
Logistic cumulative distribution function.
JAX implementation of
scipy.stats.logistic
cdf
.The cdf is defined as
\[f_{cdf}(x, k) = \int_{-\infty}^x f_{pdf}(y, k)\mathrm{d}y\]where \(f_{pdf}\) is the probability density function,
jax.scipy.stats.logistic.pdf()
.- Parameters:
x (Array | ndarray | bool | number | bool | int | float | complex) – arraylike, value at which to evaluate the CDF
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 cdf values.
- Return type: