How do i find the amplitude of a peak in my plot?
Afficher commentaires plus anciens
I want to find the peak with the most height(not the maximum y value, but the distance from the local minima just before the peak to the peak). Kindly help out.1 commentaire
madhan ravi
le 12 Mar 2019
Modifié(e) : madhan ravi
le 12 Mar 2019
Perhaps:
PEAKS=findpeaks(y);
max(abs(diff(PEAKS)))
Réponse acceptée
Plus de réponses (1)
Raghunandan V
le 12 Mar 2019
0 votes
Hello,
Find the slope for each case. When there is change in slope from positive to negative, its a peak. If the slope changes from negetive to positive then its a crust.
formula for slope is (Y2 - Y1) / (X2 - X1)
2 commentaires
Alex Sam Thomas
le 12 Mar 2019
Modifié(e) : Alex Sam Thomas
le 12 Mar 2019
mart benjamin
le 8 Nov 2021
ymax=max(y)
Catégories
En savoir plus sur Descriptive Statistics dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!