scipy.special.erfi#
- scipy.special.erfi(z, out=None) = <ufunc 'erfi'>#
Imaginäre Fehlerfunktion,
-i erf(i z).- Parameter:
- zarray_like
Reeller oder komplexwertiger Argument
- outndarray, optional
Optionales Ausgabe-Array für die Funktionsergebnisse
- Rückgabe:
- skalar oder ndarray
Werte der imaginä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.erfi(x)) >>> plt.xlabel('$x$') >>> plt.ylabel('$erfi(x)$') >>> plt.show()