01 September 2013 1 2K Report

I want to take filtered signal have a frequency band [90 kHz to 450 kHz] from a noisy signal (in time series format) with Fs = 50 ks/s in MATLAB using following code

d1 = fdesign.highpass('N,F3dB',4,90e3,Fs);Hd = design(d1,'butter');O/P = filter(Hd,I/P);

d2 = fdesign.lowpass('N,F3dB',4,450e3,Fs);Hd = design(d2,'butter');O/P = filter(Hd,O/P);

Can anybody tell me if it is correct or not?

More Partha Ray's questions See All
Similar questions and discussions