jax.scipy.stats.beta.sf#

jax.scipy.stats.beta.sf(x, a, b, loc=0, scale=1)[源代码]#

Beta 分布的生存函数。

scipy.stats.beta sf 的 JAX 实现。

生存函数定义为:

\[f_{sf}(x, a, b) = 1 - f_{cdf}(x, a, b)\]

其中 \(f_{cdf}(x, a, b)\) 是 beta 累积分布函数,jax.scipy.stats.beta.cdf()

参数:
返回值:

sf 值的数组。

返回类型:

Array