How can I use the 'opposite' of findpeaks input argument?
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Matterazzi
am 24 Mai 2017
Beantwortet: Matlaber
am 14 Jan. 2019
Is there a way I can use the opposite of 'MinPeakHeight' to cut out peaks that a greater than 10 in this example?
findpeaks(Cap,'MinPeakHeight',0,'MinPeakDistance',20,...
'Threshold',0, 'MinPeakProminence',1,'Annotate','extents')
Thanks in advance.
0 Kommentare
Akzeptierte Antwort
Michelangelo Ricciulli
am 24 Mai 2017
Hello, It seems there is no "built-in" way to do this. But you could follow the simple example HERE if you really need to do it
2 Kommentare
Weitere Antworten (1)
Matlaber
am 14 Jan. 2019
why cannot we use
findpeaks(select,Fs,'MinPeakHeight',10)
MinPeakHeight is control the Y-axis level, above 10
0 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!