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