필터 지우기
필터 지우기

I have some force data and corresponding time data. How to remove vibration signal from force data?

조회 수: 1 (최근 30일)
I have some force data and corresponding time data. After having force signals (with large time gap) some vibration signals are coming. See attached figure. How to remove these signals. how to convert this vibration signal value to zero.
Attached excel file. column 1 is Time values, column 2 is force values.
The image shows only one wave...data having numbers of such waves.

답변 (2개)

Christopher Berry
Christopher Berry 2014년 8월 6일
Since there is a "gap" between your desired signal and the unwanted vibrations, the simplest way to do what you are describing is to just truncate the data or write all Force values after a certain time to 0. For instantance, to truncate your data to 14.984 secs:
ForceTruncated = Force(Time < 14.984);
TimeTruncated = Time(Time < 14.984);
Or if you want to keep the Time and Force vectors the same length, write zeros like:
Force(Time > 14.984) = 0
  댓글 수: 3
Christopher Berry
Christopher Berry 2014년 8월 6일
Ok, I was thinking it was just the tail of the data you were trying to get rid of.
You could apply a threshold that will remove 'small' Force values like this:
Force(Force>-5 & Force<5) = 0
But this will also effect the regions that you are interested in as well. This shouldn't be a problem though, if you are just seeking the spike train data and not the wave shape...
Sagar Dhage
Sagar Dhage 2014년 8월 6일
Thanks once again... i want values to zero which is shown in figure highlighted..pls see attached image

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


Chad Greene
Chad Greene 2014년 8월 6일
You could do a bandstop butterworth filter to remove undesired frequencies.

카테고리

Help CenterFile Exchange에서 Vibration Analysis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by