jax.scipy.stats.norm.pdf#
- jax.scipy.stats.norm.pdf(x, loc=0, scale=1)[source]#
Normal probability distribution function.
JAX implementation of
scipy.stats.norm
pdf
.The normal distribution pdf is given by
\[f(x) = \frac{1}{\sqrt{2\pi}}e^{-x^2/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 pdf values.
- Return type: