jax.scipy.stats.cauchy.cdf#
- jax.scipy.stats.cauchy.cdf(x, loc=0, scale=1)[source]#
Cauchy cumulative distribution function.
JAX implementation of
scipy.stats.cauchy
cdf
.The cdf is defined as
\[f_{cdf} = \int_{-\infty}^x f_{pdf}(y) \mathrm{d}y\]where here \(f_{pdf}\) is the Cauchy probability distribution function,
jax.scipy.stats.cauchy.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: