scipy.special.dawsn#

scipy.special.dawsn(x, out=None) = <ufunc 'dawsn'>#

道森积分。

计算

exp(-x**2) * integral(exp(t**2), t=0..x).
参数:
x类数组

函数参数。

outndarray,可选

函数值可选输出数组

返回:
y标量或 ndarray

积分值。

另见

wofz, erf, erfc, erfcx, erfi

参考文献

[1]

史蒂文·g·约翰逊,Faddeeva W 函数实现。 http://ab-initio.mit.edu/Faddeeva

示例

>>> import numpy as np
>>> from scipy import special
>>> import matplotlib.pyplot as plt
>>> x = np.linspace(-15, 15, num=1000)
>>> plt.plot(x, special.dawsn(x))
>>> plt.xlabel('$x$')
>>> plt.ylabel('$dawsn(x)$')
>>> plt.show()
../../_images/scipy-special-dawsn-1.png