标签: python numpy
可能重复: Peak-finding algorithm for Python/SciPy
我希望在浮点数矢量中找到局部最大值,就像Matlab的findpeaks函数所做的那样。
numpy有类似的功能吗?
谢谢!
答案 0 :(得分:9)
scipy.signal.find_peaks_cwt
http://docs.scipy.org/doc/scipy/reference/generated/scipy.signal.find_peaks_cwt.html
或:
https://gist.github.com/1178136