scipy.special.wofz¶
-
scipy.special.
wofz
(z) = <ufunc 'wofz'>¶ Faddeeva function
Returns the value of the Faddeeva function for complex argument:
exp(-z**2) * erfc(-i*z)
References
[R533] Steven G. Johnson, Faddeeva W function implementation. http://ab-initio.mit.edu/Faddeeva Examples
>>> from scipy import special >>> import matplotlib.pyplot as plt >>> x = np.linspace(-3, 3) >>> plt.plot(x, special.wofz(x)) >>> plt.xlabel('$x$') >>> plt.ylabel('$wofz(x)$') >>> plt.show()