scipy.special.erfc — SciPy v1.16.0 Manual (original) (raw)
scipy.special.erfc(x, out=None) = <ufunc 'erfc'>#
Complementary error function, 1 - erf(x)
.
Parameters:
xarray_like
Real or complex valued argument
outndarray, optional
Optional output array for the function results
Returns:
scalar or ndarray
Values of the complementary error function
Notes
erfc has experimental support for Python Array API Standard compatible backends in addition to NumPy. Please consider testing these features by setting an environment variable SCIPY_ARRAY_API=1
and providing CuPy, PyTorch, JAX, or Dask arrays as array arguments. The following combinations of backend and device (or other capability) are supported.
See Support for the array API standard for more information.
References
Examples
import numpy as np from scipy import special import matplotlib.pyplot as plt x = np.linspace(-3, 3) plt.plot(x, special.erfc(x)) plt.xlabel('$x$') plt.ylabel('$erfc(x)$') plt.show()