jax.scipy.special.erfc# jax.scipy.special.erfc(x)[source]# 误差函数的补函数 scipy.special.erfc 的 JAX 实现。 \[\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()