I just encounter a problem of finding specific peaks or troughs in a signal, and can't find appropriate functions in Julia.
In MATLAB, the findpeaks is very convenient that it could find local maxima and filter it by combination of conditions, like the minimum peak height, minimum prominence(peak to neighbor troughs height), etc. and Python also have scipy.signal.find_peaks with similar functionality.
I think the DSP package might be the right place to do such analysis. all rough, the Images package already have simple findlocalmaxima and findlocalminima without filter conditions.
Hi,
I just encounter a problem of finding specific peaks or troughs in a signal, and can't find appropriate functions in Julia.
In MATLAB, the
findpeaks
is very convenient that it could find local maxima and filter it by combination of conditions, like the minimum peak height, minimum prominence(peak to neighbor troughs height), etc. and Python also havescipy.signal.find_peaks
with similar functionality.I think the DSP package might be the right place to do such analysis. all rough, the
Images
package already have simplefindlocalmaxima
andfindlocalminima
without filter conditions.