How to find maximum among several local peaks?
29 次查看(过去 30 天)
显示 更早的评论
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!
0 个评论
采纳的回答
Star Strider
2022-11-14
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 个评论
Star Strider
2022-11-14
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.
.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!