本文簡要介紹 python 語言中 scipy.signal.morlet
的用法。
用法:
scipy.signal.morlet(M, w=5.0, s=1.0, complete=True)#
複 Morlet 小波。
- M: int
小波的長度。
- w: 浮點數,可選
歐米茄0。默認值為 5
- s: 浮點數,可選
縮放因子,窗口從
-s*2*pi
到+s*2*pi
。默認值為 1。- complete: 布爾型,可選
是使用完整版還是標準版。
- morlet: (M,) ndarray
參數 ::
返回 ::
注意:
標準版:
pi**-0.25 * exp(1j*w*x) * exp(-0.5*(x**2))
這種常用的小波通常簡稱為 Morlet 小波。請注意,此簡化版本可能會在 w 值較低時導致可接納性問題。
完整版:
pi**-0.25 * (exp(1j*w*x) - exp(-0.5*(w**2))) * exp(-0.5*(x**2))
此版本有一個更正術語以提高可接受性。對於 w 大於 5,校正項可以忽略不計。
請注意,返回小波的能量沒有根據以下公式進行歸一化:s.
該小波的基頻(以 Hz 為單位)由下式給出
f = 2*s*w*r / M
其中r是采樣率。注意:該函數是在
cwt
之前創建的,與其不兼容。例子:
>>> from scipy import signal >>> import matplotlib.pyplot as plt
>>> M = 100 >>> s = 4.0 >>> w = 2.0 >>> wavelet = signal.morlet(M, s, w) >>> plt.plot(wavelet.real, label="real") >>> plt.plot(wavelet.imag, label="imag") >>> plt.legend() >>> plt.show()
相關用法
- Python SciPy signal.morlet2用法及代碼示例
- Python SciPy signal.max_len_seq用法及代碼示例
- Python SciPy signal.minimum_phase用法及代碼示例
- Python SciPy signal.medfilt2d用法及代碼示例
- Python SciPy signal.czt_points用法及代碼示例
- Python SciPy signal.chirp用法及代碼示例
- Python SciPy signal.residue用法及代碼示例
- Python SciPy signal.iirdesign用法及代碼示例
- Python SciPy signal.kaiser_atten用法及代碼示例
- Python SciPy signal.oaconvolve用法及代碼示例
- Python SciPy signal.hilbert用法及代碼示例
- Python SciPy signal.ricker用法及代碼示例
- Python SciPy signal.group_delay用法及代碼示例
- Python SciPy signal.cheb2ord用法及代碼示例
- Python SciPy signal.get_window用法及代碼示例
- Python SciPy signal.lfilter用法及代碼示例
- Python SciPy signal.coherence用法及代碼示例
- Python SciPy signal.dfreqresp用法及代碼示例
- Python SciPy signal.TransferFunction用法及代碼示例
- Python SciPy signal.dbode用法及代碼示例
- Python SciPy signal.residuez用法及代碼示例
- Python SciPy signal.bilinear_zpk用法及代碼示例
- Python SciPy signal.firls用法及代碼示例
- Python SciPy signal.impulse用法及代碼示例
- Python SciPy signal.buttord用法及代碼示例
注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.signal.morlet。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。