This is documentation for an old release of SciPy (version 0.11.0). Read this page in the documentation of the latest stable release (version 1.15.1).
Also known as the “mexican hat wavelet”, models the function: A ( 1 - x^2/a^2) exp(-t^2/a^2), where A = 2/sqrt(3a)pi^1/3
Parameters : | a: scalar :
points: int, optional :
Returns : ———– : vector: 1-D ndarray :
Examples : ——– : >>> import matplotlib.pyplot as plt : >>> points = 100 : >>> a = 4.0 : >>> vec2 = ricker(a,points) : >>> print len(vec2) : 100 : >>> plt.plot(vec2) : >>> plt.show() : |
---|