Return a Ricker wavelet, also known as the “Mexican hat wavelet”.
It models the function:
A (1 - x^2/a^2) exp(-t^2/a^2),
where A = 2/sqrt(3a)pi^1/3.
Parameters : | points : int
a : scalar
|
---|---|
Returns : | vector : (N,) ndarray
|
Examples
>>> 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()