本文簡要介紹 python 語言中 scipy.signal.ricker
的用法。
用法:
scipy.signal.ricker(points, a)#
返回 Ricker 小波,也稱為“Mexican hat wavelet”。
它對函數進行建模:
A * (1 - (x/a)**2) * exp(-0.5*(x/a)**2)
,其中
A = 2/(sqrt(3*a)*(pi**0.25))
。- points: int
向量中的點數。將以 0 為中心。
- a: 標量
小波的寬度參數。
- vector: (N,) 數組
裏克曲線形狀的長度點數組。
參數 ::
返回 ::
例子:
>>> from scipy import signal >>> import matplotlib.pyplot as plt
>>> points = 100 >>> a = 4.0 >>> vec2 = signal.ricker(points, a) >>> print(len(vec2)) 100 >>> plt.plot(vec2) >>> plt.show()
相關用法
- Python SciPy signal.residue用法及代碼示例
- Python SciPy signal.residuez用法及代碼示例
- Python SciPy signal.resample_poly用法及代碼示例
- Python SciPy signal.remez用法及代碼示例
- Python SciPy signal.resample用法及代碼示例
- Python SciPy signal.czt_points用法及代碼示例
- Python SciPy signal.chirp用法及代碼示例
- Python SciPy signal.iirdesign用法及代碼示例
- Python SciPy signal.max_len_seq用法及代碼示例
- Python SciPy signal.kaiser_atten用法及代碼示例
- Python SciPy signal.oaconvolve用法及代碼示例
- Python SciPy signal.hilbert用法及代碼示例
- Python SciPy signal.group_delay用法及代碼示例
- Python SciPy signal.cheb2ord用法及代碼示例
- Python SciPy signal.get_window用法及代碼示例
- Python SciPy signal.lfilter用法及代碼示例
- Python SciPy signal.morlet用法及代碼示例
- Python SciPy signal.coherence用法及代碼示例
- Python SciPy signal.dfreqresp用法及代碼示例
- Python SciPy signal.TransferFunction用法及代碼示例
- Python SciPy signal.dbode用法及代碼示例
- Python SciPy signal.bilinear_zpk用法及代碼示例
- Python SciPy signal.firls用法及代碼示例
- Python SciPy signal.impulse用法及代碼示例
- Python SciPy signal.buttord用法及代碼示例
注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.signal.ricker。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。