scipy.special.erfi#
- scipy.special.erfi(z, out=None) = <ufunc 'erfi'>#
虚误差函数,
-i erf(i z)
。- 参数:
- zarray_like
实值或复数值自变量
- outndarray, 可选
函数结果的可选输出数组
- 返回:
- 标量或 ndarray
虚差函数的值
备注
0.12.0 版中新增。
参考文档
[1]Steven G. Johnson, Faddeeva W 函数实现。
示例
>>> 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()