The fastest way to find local minimum

3 ビュー (過去 30 日間)
Hg
Hg 2015 年 10 月 20 日
コメント済み: Hg 2015 年 10 月 20 日
What is the most efficient/fastest way to find the circled local minimum below, the lowest minima between two highest peaks? The graph was created by plot(x,y).
  5 件のコメント
Walter Roberson
Walter Roberson 2015 年 10 月 20 日
Never name a variable "min"; that interferes with using the MATLAB min() function. For example,
[peaks, locs] = findpeaks(x, y,'MinPeakProminence',100);
[minval, minidx] = min( x(locs(1):locs(2)) );
%minidx is relative to the subset of values, so move it back to full range
minidx = minidx + locs(1) - 1;
Hg
Hg 2015 年 10 月 20 日
編集済み: Hg 2015 年 10 月 20 日
Thanks for the advice. I think using 'MinPeakProminence' to get 2 highest peaks is not robust enough. It might get more than 2 peaks like below where the first and second peak have same value.

サインインしてコメントする。

採用された回答

Image Analyst
Image Analyst 2015 年 10 月 20 日
Invert your signal
invertedSignal = max(signal(:)) - signal;
Now valleys will be peaks. Then call find peaks.
  1 件のコメント
Hg
Hg 2015 年 10 月 20 日
ok, this is genius!

サインインしてコメントする。

その他の回答 (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