How to identify the baseline

조회 수: 57 (최근 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 CenterFile Exchange에서 Descriptive Statistics에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by