フィルターのクリア

Is there a built in function like MinPeakHeight but for maximum numbers?

6 ビュー (過去 30 日間)
Heirleking
Heirleking 2022 年 3 月 18 日
回答済み: Star Strider 2022 年 3 月 18 日
It would be something like MaxPeakHeight to find negative peaks. I have a random signal with positive and negative values and need to find negative peaks.

回答 (3 件)

Walter Roberson
Walter Roberson 2022 年 3 月 18 日
Work with the negative of the signal; the most negative original signal would become the most positive on the transformed signal.
  1 件のコメント
Heirleking
Heirleking 2022 年 3 月 18 日
That would be true if all the positive vales were the same as the negative… not in my case, tho

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


Image Analyst
Image Analyst 2022 年 3 月 18 日
Walter is right. You just didn't understand. Here is some code to explain it. You can do
% Find peaks.
[peakValues, indexesOfPeaks] = findpeaks(signal); % Add options if you want.
% Find valleys. They will be peaks of the inverted signal.
[valleyValues, indexesOfValleys] = findpeaks(-signal); % Add options if you want.
% Now invert the values to make them upside down again.
valleyValues = -valleyValues;
Note it doesn't matter if your signal is all positive, all negative, or even crosses the y=0 axis so that it has both positive and negative values. The code above will work. There are some options (granted most of them are confusing) that can help you narrow down the peaks and valleys to just the ones you want.
  2 件のコメント
Image Analyst
Image Analyst 2022 年 3 月 18 日
And I deleted your tags because this has nothing to do with compiling or the Coder product since you're not talking about building a standalone executable, or embedding your code into hardware (actual silicon on a standalone integrated circuit chip). So no embedding into silicon, no code generation, no compiling, etc. It's just a straightforward MATLAB program.
Heirleking
Heirleking 2022 年 3 月 18 日
Oh I see, I did not understand Walter's response. Thank you so much!

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


Star Strider
Star Strider 2022 年 3 月 18 日
Another option is the islocalmin function (introduced in R2017b).

カテゴリ

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