Numpy equivalent of Matlab's findpeaks function?

numpy, python

Solution

How about `scipy.signal.find_peaks_cwt`

http://docs.scipy.org/doc/scipy/reference/generated/scipy.signal.find_peaks_cwt.html

or:

https://gist.github.com/1178136

Problem

Possible Duplicate: Peak-finding algorithm for Python/SciPy I'm looking to find local maxima in a vector of floating-point numbers, as is done by Matlab's findpeaks function. Does numpy have a similar function? Thanks!

Original source

Related problems