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