How do I filter correctly ?
Afficher commentaires plus anciens
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
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Digital Filtering dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!