本文简要介绍 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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。