フィルターのクリア

How to identify the baseline

44 ビュー (過去 30 日間)
Ibrahim Suleiman
Ibrahim Suleiman 2021 年 3 月 31 日
コメント済み: Star Strider 2021 年 4 月 23 日
I have force-time graph and I want to identify the baseline. How can I do this? Is there a function to find the baseline?

採用された回答

Star Strider
Star Strider 2021 年 3 月 31 日
Since the baseline appears to be the minimum value, the min function may do what you want. There are similar functions that can extend that approach if you need to use them.
  9 件のコメント
Ibrahim Suleiman
Ibrahim Suleiman 2021 年 4 月 23 日
Thank you for your help. This aproach makes the most sense to me.
Star Strider
Star Strider 2021 年 4 月 23 日
As always, my pleasure!

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

その他の回答 (1 件)

Image Analyst
Image Analyst 2021 年 3 月 31 日
Maybe mask the signal to find values below a threshold and then take the mean
threshold = 10; % Or whatever.
baselineIndexes = abs(signal) < threshold;
baseLineValue = mean(signal(baselineIndexes));
yline(baseLineValue, 'Color', 'r', 'LineWidth', 2);

カテゴリ

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