필터 지우기
필터 지우기

How do I filter correctly ?

조회 수: 6 (최근 30일)
Andre
Andre 2014년 5월 22일
댓글: Star Strider 2014년 5월 22일
Hi,
I have two small signals sampled both on 15360Hz:
1)"almost" a SIN, with fundamental frequency on 60Hz. 2) a noise signal (that would represent a SIN too), with fundamental frequency on 60Hz too.
I want to smooth the second signal, so, I did a 2. order butterworth LP filter, cutting over 200Hz.
So, plotting the 2 signal, I got the noised signal smoothed like I want.
The problem is,
If I took the same filter (LP) on the 1 signal, it will change its magnitude. Why (the first signal just have signals down the 200Hz) ??? Am I missing some theory ??
My butterworth:
function Hd=filtsignal
Fs=15360;
N=2; % order
Fc = 200; % cutoff
h=fdesign.lowpass('N,F3db', N, Fc, Fs);
Hd=design(h,'butter');
On my main code:
% y is the 1 signal
y=filter(filtsignal,y);
% y2 is the 2 signal
y2=filter(filtsignal,y2);
Andre

채택된 답변

Star Strider
Star Strider 2014년 5월 22일
I don’t completely understand. However if you filter out noise, the magnitude of the output signal from the filter will decrease because you’ve removed some of the energy in the signal.
Also, I suggest using filtfilt rather than filter. It eliminates phase distortion.
  댓글 수: 4
Andre
Andre 2014년 5월 22일
Yes,
that´s what I thought.
There is a way (another matlab filter alg) that can do this without so much attenuation ?
Andre
Star Strider
Star Strider 2014년 5월 22일
You might be able to reduce the attenuation by using a higher-order filter, and using tf2sos and then filtfilt (with the second-order-section syntax) instead of filter. The filtfilt function will eliminate phase distortion. Other filter designs (Chebyshev, elliptic) have different passband characteristics that might work better in your application. The only way to find out which is best is to experiment.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Digital Filtering에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by