How can I split the signal in matlab

조회 수: 18 (최근 30일)
studentmatlaber
studentmatlaber 2021년 3월 7일
댓글: Walter Roberson 2021년 3월 9일
I have 25 signals. these signals exist as a double. that is, when I want to plot a signal I have, I write the plot (t1, y1) command. I am sharing the screenshot of this graph of my signal with you. My goal here is to divide the signal in two from the place I marked. The left side of the graph is noise, and the right side of the graph is noise + signal. Since I have 25 different signals, the noise width of each is different. The code that I want to write here is that these 25 signals can be automatically divided into two as noise and noise + signal.
  댓글 수: 3
studentmatlaber
studentmatlaber 2021년 3월 7일
this is a signal from a sensor. The left side of the graph is the ambient noise. On the right, the signal is detected. I will divide the signal from the place I marked and take the energy of the noise (for 25 signals) and look at the histogram.
Walter Roberson
Walter Roberson 2021년 3월 8일
I don't see it. To me the ambient noise appears to be approximately +/- 0.05 .

댓글을 달려면 로그인하십시오.

채택된 답변

Image Analyst
Image Analyst 2021년 3월 8일
How about
index = find(signal > 0.47, 1, 'first');
noisyLeftSide = signal(1:index);
goodRightSide = signal(index+1 : end);
  댓글 수: 4
studentmatlaber
studentmatlaber 2021년 3월 9일
We manually set the 0.47 value in this chart, but I have 600 signals. Can it be written into a code that can automatically determine this threshold value?
Walter Roberson
Walter Roberson 2021년 3월 9일
No, but we just might be able to estimate the +/- 0.05-ish noise that I propose is the true ambient noise. It is not clear to me that 0.47 is objectively justifiable.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Pulse and Transition Metrics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by