jax.scipy.special.erfc#
- jax.scipy.special.erfc(x)[source]#
误差函数的补
JAX 实现
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) – 类数组,实数。
- 返回值:
包含误差函数补值的数组。
- 返回类型:
注释
JAX 版本仅支持实数输入。