jax.scipy.stats.norm.ppf#
- jax.scipy.stats.norm.ppf(q, loc=0, scale=1)[source]#
Normal distribution percent point function.
JAX implementation of
scipy.stats.norm
ppf
.The percent point function is defined as the inverse of the cumulative distribution function,
jax.scipy.stats.norm.cdf()
.- Parameters:
q (Array | ndarray | bool | number | bool | int | float | complex) – arraylike, value at which to evaluate the PPF
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 ppf values.
- Return type: