I'm trying to get a peak of a noisy frequency spectrum, and it seemed like scipy.signal.find_peaks_cwt (documented at scipy.org) was a good solution.
However, even after updating scipy, python (and ipython) can't find the function:
>>> from scipy.signal import find_peaks_cwt
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: cannot import name find_peaks_cwt
Am I importing it wrong? Or is it an unreleased version? I'm using scipy 0.10.1 on python 2.7