How to make 'MinPeakDistance' consider first point close to last point in findpeaks ?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi,
I am having trouble with findpeaks. I want to find the two highest peaks in a set of data, which are not too close from one another. I use the following function :
findpeaks(data,'SortStr','descend','NPeaks',2,'MinPeakDistance',min_distance);
The problem is that I want it to consider the first points and the last ones as close to one another, like periodic boundary condition. Indeed, here it may return two peaks that are at the beginning and at the end of the data whereas their distance is smaller than min_distance considering periodic boundary condition.
How can I deal with this ?
Réponses (1)
Peter Cook
le 15 Juin 2016
If your signal is periodic, you could try to circshift() the signal a couple times (by say, length(signal)/4 or length(signal)/3) and see if you get the same result.
0 commentaires
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!