jax.scipy.stats.cauchy.logpdf#
- jax.scipy.stats.cauchy.logpdf(x, loc=0, scale=1)[source]#
Cauchy log probability distribution function.
JAX implementation of
scipy.stats.cauchy
logpdf
.The Cauchy probability distribution function is
\[f(x) = \frac{1}{\pi(1 + x^2)}\]- 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 logpdf values
- Return type: