jax.scipy.stats.beta.sf#
- jax.scipy.stats.beta.sf(x, a, b, loc=0, scale=1)[源代码]#
Beta 分布生存函数。
scipy.stats.beta
sf
的 JAX 实现。生存函数定义为
其中
是 beta 累积分布函数,jax.scipy.stats.beta.cdf()
。- 参数:
x (Array | ndarray | bool | number | bool | int | float | complex) – 类似数组,用于评估 SF 的值
a (Array | ndarray | bool | number | bool | int | float | complex) – 类似数组,分布形状参数
b (Array | ndarray | bool | number | bool | int | float | complex) – 类似数组,分布形状参数
loc (Array | ndarray | bool | number | bool | int | float | complex) – 类似数组,分布偏移参数
scale (Array | ndarray | bool | number | bool | int | float | complex) – 类似数组,分布比例参数
- 返回:
sf 值的数组。
- 返回类型: