What are the steps for making a 'fft filter'?
7 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I am new to the fft filter and I want to know the steps of building a fft filter, e.g., what I need to know before I build this filter. In addition, my Matlab has Signal Processing Toolbox installed.
I am given a sequence with 131072 samples, the sampling rate is 500Hz. Also, I want to filter this sequence using low pass filter with cutoff frequency=20Hz.
My question is about the syntax of "fftfilt", how do I generate the coefficient vector b by providing the cutoff frequency(the freq range that i'm interested).
Thanks for your help, Kay
0 件のコメント
回答 (2 件)
Honglei Chen
2011 年 9 月 23 日
Hi Kay,
You need to first design the filter to get coefficient b and then pass it into the fftfilt. For example, assume you need a 10th order filter with cutoff of 20 Hz and sampling frequency of 500 Hz, you can do
h = fdesign.lowpass('N,Fc',10,20,500);
hd = design(h);
x = rand(131072,1);
y = fftfilt(hd.Numerator,x);
HTH
0 件のコメント
Arturo Moncada-Torres
2011 年 9 月 23 日
Try checking this previous post. Although it is for a HPF, the main steps are practically the same ;-)
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!