フィルターのクリア

Is findpeaks same as local maxima?

7 ビュー (過去 30 日間)
SSG_newbiecoder
SSG_newbiecoder 2018 年 2 月 6 日
回答済み: Birdman 2018 年 2 月 6 日
Hello, I applied findpeaks to my signal and found out the local maximas. I read that it takes the local maxima by checking if the point is greater than the neighbours. But there is one more condition right? That the derivative must be a zero at that point? Is this also satisfied?

採用された回答

Birdman
Birdman 2018 年 2 月 6 日
Let's have a look at the simple example from documentation of findpeaks:
data=[25 8 15 5 6 10 10 3 1 20 7];
findpeaks(data)
When you see the marked points on the plot, none of them are differentiable since there are more than one tangent line that can be drawn at those points. Therefore:
That the derivative must be a zero at that point? Is this also satisfied?
No, it is not, as you can see.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDescriptive Statistics についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by