Finding local minimums/maximums for a set of data

61 vues (au cours des 30 derniers jours)
Si14
Si14 le 21 Juil 2012
Commenté : Umesh Gautam le 11 Mai 2023
Hi, I have a set of data which oscillates between minimums and maximum values. The min and max values change slightly over time. I want to see the trend of changing of min and max values over time. In order to do that, it seems that I need to extract the local min and local maximums.
Is there any function to extract the local minimums and maximums of the following graph?
Thanks.
  4 commentaires
Steev Mathew
Steev Mathew le 4 Mar 2021
Thanks! This helped me a lot. I was looking for a way to filter out noise from my data.
Anupama V
Anupama V le 6 Nov 2022
How to find the valley of a ppg signal?(secondary peak of a signal)

Connectez-vous pour commenter.

Réponse acceptée

Star Strider
Star Strider le 22 Juil 2012
Modifié(e) : Star Strider le 22 Juil 2012
Another option is ‘findpeaks’ in the Signal Processing Toolbox. It will give you the maximum (and indirectly the minimum) values and their index locations. If ‘Data’ is the vector that produced the plot, to find the maxima and minima:
[Maxima,MaxIdx] = findpeaks(Data);
DataInv = 1.01*max(Data) - Data;
[Minima,MinIdx] = findpeaks(DataInv);
The true minima will then be:
Minima = Data(MinIdx);
The index values also allow you to determine the times the maxima and minima occurred.
  9 commentaires
Christos-Nikolaos  Zacharopoulos
Hi, I know that this is an old question, but why is the signal inverted using : DataInv = 1.01*max(Data) - Data; Cheers,
Star Strider
Star Strider le 27 Fév 2018
For some reason, it was important that the inverted waveform be greater than zero. (That was years ago, so I don’t remember the details.)
That’s likely not necessary for every signal. If you want the minima, just negate the original signal and use the indices findpeaks returns in the second output to get the values of the original signal.
I you have R2017b, the islocalmin function is also an option to get the minima without inverting the signal.

Connectez-vous pour commenter.

Plus de réponses (5)

Steven Lord
Steven Lord le 4 Mar 2021
For more recent releases take a look at the islocalmin, islocalmax, and (perhaps) detrend functions.

Si14
Si14 le 26 Juil 2012
Thank you guys for your responses. I am using the following and it works nice:
[Maxima,MaxIdx] = findpeaks(Data);
DataInv = 1.01*max(Data) - Data;
[Minima,MinIdx] = findpeaks(DataInv);
Minima = Data(MinIdx);
  2 commentaires
Star Strider
Star Strider le 26 Juil 2012
Thank you for accepting my answer!
Umesh Gautam
Umesh Gautam le 11 Mai 2023
It is working great.

Connectez-vous pour commenter.


Image Analyst
Image Analyst le 22 Juil 2012
Modifié(e) : Image Analyst le 22 Juil 2012
If you have the Image Processing Toolbox, you can use imregionmax() and imregionalmin(). Do you have that toolbox? If you do that would be the simplest because it's just simply one line of code to find either the maxs or the mins.
You can also do it by seeing where the morphological max or min (performed by imdilate() and imerode() respectively) equals the original array. But again, that requires the Image Processing Toolbox.

Randy82
Randy82 le 13 Août 2014
I have one question: Why do i have to multiply max(Data) with a factor 1.01?
  1 commentaire
Star Strider
Star Strider le 13 Août 2014
To keep all the values of the inverted vector > 0.

Connectez-vous pour commenter.


Prithisha K
Prithisha K le 8 Sep 2021
Set the prominence window value to 25. Then increase the min.prominence value untill there are exactly 9 minima found.

Community Treasure Hunt

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

Start Hunting!

Translated by