jax.scipy.special.erfc#
- jax.scipy.special.erfc(x)[source]#
The complement of the error function
JAX implementation of
scipy.special.erfc
.\[\mathrm{erfc}(x) = \frac{2}{\sqrt\pi} \int_{x}^\infty e^{-t^2} \mathrm{d}t\]This is the complement of the error function
erf()
,erfc(x) = 1 - erf(x)
.- Parameters:
x (ArrayLike) – arraylike, real-valued.
- Returns:
array containing values of the complement of the error function.
- Return type:
Notes
The JAX version only supports real-valued inputs.