當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python SciPy special.dawsn用法及代碼示例


本文簡要介紹 python 語言中 scipy.special.dawsn 的用法。

用法:

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

道森積分。

計算:

exp(-x**2) * integral(exp(t**2), t=0..x).

參數

x array_like

函數參數。

out ndarray,可選

函數值的可選輸出數組

返回

y 標量或 ndarray

積分值。

參考

[1]

Steven G. Johnson,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()
scipy-special-dawsn-1.png

相關用法


注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.special.dawsn。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。