scipy.special.erfcx — SciPy v1.15.2 Manual (original) (raw)
scipy.special.erfcx(x, out=None) = <ufunc 'erfcx'>#
Scaled complementary error function, exp(x**2) * erfc(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 scaled complementary error function
Notes
Added in version 0.12.0.
References
Examples
import numpy as np from scipy import special import matplotlib.pyplot as plt x = np.linspace(-3, 3) plt.plot(x, special.erfcx(x)) plt.xlabel('$x$') plt.ylabel('$erfcx(x)$') plt.show()