jax.scipy.special.erfc# jax.scipy.special.erfc(x)[源代码][源代码]# 误差函数的补函数 JAX implementation of scipy.special.erfc. \[\mathrm{erfc}(x) = \frac{2}{\sqrt\pi} \int_{x}^\infty e^{-t^2} \mathrm{d}t\] 这是误差函数的补函数 erf(),erfc(x) = 1 - erf(x)。 参数: x (ArrayLike) – 类数组,实值。 返回: 包含误差函数补数的值的数组。 返回类型: Array 备注 JAX 版本仅支持实值输入。 参见 jax.scipy.special.erf() jax.scipy.special.erfinv()