Can you limit findpeaks to only look for odd peaks (i.e. search 1st, 3d, 5th, etc. peaks)?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Marc Elmeua
le 7 Déc 2018
Commenté : Marc Elmeua
le 7 Déc 2018
Thanks for the help :)
0 commentaires
Réponse acceptée
Image Analyst
le 7 Déc 2018
No. You just find them all and subsample
[peakValues, indexesOfPeaks] = findpeaks(signals);
peakValues = peakValues(1:2:end);
indexesOfPeaks = indexesOfPeaks(1:2:end);
Plus de réponses (0)
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!