How to find maximum among several local peaks?

8 visualizzazioni (ultimi 30 giorni)
Hi, I use findpeaks() to locate a few local maxima of a data array as the data may flucuate slightly when closing peak, like the figure below. The third peak in red box is the largest one in value, how can I just locate the thrid one among five peaks in matlab? Thanks!

Risposta accettata

Star Strider
Star Strider il 14 Nov 2022
It would help to have the data.
If that is the maximum peak in value, it is also the maximum of the vector plotted in the image.
One way to return it and its index, if the independent variable vector is ‘v’, is simply:
[vmax, idx] = max(v)
Otherwise, iif that is not appropriate and if you know that the third peak is the one you want to return, this may work:
[pks,locs] = findpeaks(v)
peak3 = pks(3)
locs3 = locs(3)
There may be other ways to isolate it, however without the data, it is not possible to determine that.
.
  2 Commenti
Ying Wu
Ying Wu il 14 Nov 2022
@Star Strider Thanks for reply! The data is like a periodic sine-plot, and will slightly up and down when closing each peak. And I'd like to determine the maximum for each peak among a few values. For now, my method is to use findpeaks() to determine several values for each peak, and divid them into different group accoding to the index, and then choose maximum and its index of each group, so that there would be only one maximum value around each peak. But this method is a little bit tedious, so I am wondering whether matlab has embedded function to solve similar problems. Thanks again!
Star Strider
Star Strider il 14 Nov 2022
As always, my pleasure!
If you want a specific number of maxima, rather than using findpeaks, you can use the maxk function (introduced in R2017b).
You can also use maxk with the findpeaks results.
II’m not certain which would be best, because I’m not certain what you want to do.
.

Accedi per commentare.

Più risposte (0)

Tag

Prodotti


Release

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by