scipy.special.erfcx#
- scipy.special.erfcx(x, out=None) = <ufunc 'erfcx'>#
Skalierte komplementäre Fehlerfunktion,
exp(x**2) * erfc(x).- Parameter:
- xarray_like
Reeller oder komplexwertiger Argument
- outndarray, optional
Optionales Ausgabe-Array für die Funktionsergebnisse
- Rückgabe:
- skalar oder ndarray
Werte der skalierten komplementären Fehlerfunktion
Hinweise
Hinzugefügt in Version 0.12.0.
Referenzen
[1]Steven G. Johnson, Faddeeva W-Funktionsimplementierung. http://ab-initio.mit.edu/Faddeeva
Beispiele
>>> 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()