필터 지우기
필터 지우기

Suggest a filter to remove the noise from the signal

조회 수: 2 (최근 30일)
Gova ReDDy
Gova ReDDy 2013년 9월 18일
댓글: Image Analyst 2013년 11월 20일
Can someone suggest a filter to remove the noise from the signal shown in this image (with the sampling rate being 500)?
  댓글 수: 2
Jan
Jan 2013년 9월 18일
As usual I do not see anything on tinypic.
Jan
Jan 2013년 9월 18일
편집: Jan 2013년 9월 18일
On imageshack I see a large banner in the foreground, which wants me to click on a "Enter to win" button, as far as I understand. The small [x] on the top right does not close the banner. I hate such stuff.
@GovaReDDy: It is not your fault. TMW hsitates for years to allow storing pictures on their server. But this is the only location where pictures concerning the forum should be hosted.

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

채택된 답변

Image Analyst
Image Analyst 2013년 9월 19일
I'd try a modified median filter
% Take median filter.
medianFilteredSignal = medfilt2(signal, [1,3]);
% Find where signal is bad
badElements = signal < 400 | signal > 900;
% Replace bad elements with median filtered values.
noiseFreeSignal = signal; % Initialize.
noiseFreeSignal(badElements) = medianFilteredSignal(badElements); % Do the replacement
  댓글 수: 10
Manjuri
Manjuri 2013년 11월 20일
problem has occured can give the details about noise separation from signal
Image Analyst
Image Analyst 2013년 11월 20일
I don't understand the above comment or question by Manjuri.

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

추가 답변 (1개)

Jan
Jan 2013년 9월 18일
It is impossible to suggest a filter based on the information of the sample frequency only. We cannot know the nature of the noise and of the wanted signal. You could be interested in low or high frequencies or in a specific band. But the filter parameters must depend on these details. So please provide more information.
  댓글 수: 2
Gova ReDDy
Gova ReDDy 2013년 9월 18일
편집: Gova ReDDy 2013년 9월 18일
So, as shown in the link the signal is containing noise which is labeled with red colour.Any suggestion to remove this kind of noise. Thanks in Advance.
Jan
Jan 2013년 9월 19일
It matters if you have some peaks only, or if a frequency spectrum of the noise is know, if you know the frequency spectrum of the wanted signal and can suppress anything outside it.

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

카테고리

Help CenterFile Exchange에서 Frequency Transformations에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by