jax.scipy.stats.gumbel_r.sf#
- jax.scipy.stats.gumbel_r.sf(x, loc=0, scale=1)[源代码]#
Gumbel 分布(右偏)的生存函数。
JAX 对
scipy.stats.gumbel_r的sf的实现。\[f_{sf}(x; \mu, \beta) = 1 - F_{cdf}(x; \mu, \beta)\]- 参数:
x (Array | ndarray | bool | number | bool | int | float | complex | TypedNdArray) – ArrayLike,用于评估生存函数的点
loc (Array | ndarray | bool | number | bool | int | float | complex | TypedNdArray) – ArrayLike,分布偏移量(\(\mu\))(默认为 0)
scale (Array | ndarray | bool | number | bool | int | float | complex | TypedNdArray) – ArrayLike,分布尺度(\(\beta\))(默认为 1)
- 返回:
sf 值数组(1 - cdf)
- 返回类型: