Find Peaks, how to ignore peaks that are not so sharp?

I need to find peaks in a first derivative curve. Peaks that are no so sharp doest not fit to the purpose of my work. I have tried "findpeaks", "peakseek" and "peakdet" with no success. Setting a trheshold also does not help, once the undesireble peaks can be above or bellow zero, or higher than other important peaks. In the example bellow the red circle shows in red, the peak I want to ignore, and the other circles in green are ok. Is there a way to select a peak based on how sharp it is?
Thank you

Answers (2)

You did not post the findpeaks code you used, so I am not certain what options you have used.
Use the findpeaks function with appropriate name-value pair arguments. The 'MinPeakProminence' and 'MinPeakHeight' options would be my first choice. Experiment to get the result you want.

3 Comments

Jan
Jan on 15 Mar 2017
Edited: Jan on 15 Mar 2017
+1. This will be easier than manual determination of the gradient.
'MinPeakProminence' seems to be more apropriate, but it gives me an error: "??? Error using ==> uddpvparse at 119 Invalid Parameter/Value pairs.
Error in ==> findpeaks at 46 hopts = uddpvparse('dspopts.findpeaks',varargin{:});"
is it because im using an old Matlab version??
Thank you for the help
doc findpeaks
should tell you if it is an option in whichever version you have. I don't know which version it was added in, it is hard to tell without trawling through old docs or release notes.

Sign in to comment.

Determine the peaks and the gradient() at the peaks. Then exclude the peaks with the low gardient.
It might be useful not to use the gradient between the direct neighbors, because this might be dominated by noise. Perhaps a Savitzky-Golay filter for the surrounding 100 points helps.

Asked:

on 15 Mar 2017

Commented:

on 16 Mar 2017

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!