フィルターのクリア

Lowpass filter with L=50?

2 ビュー (過去 30 日間)
Dick Rusell
Dick Rusell 2014 年 10 月 9 日
コメント済み: Star Strider 2014 年 10 月 9 日
I'm not sure how to make a lowpass filter with L=50, cutoff frequency 1100Hz with omegac, and a sampling frequency of 8000Hz using the Fourier Series Method.

採用された回答

Star Strider
Star Strider 2014 年 10 月 9 日
I would use the fir1 function. It seems to do what you want.
Here is my approach:
Fs = 8.0E+3;
Fn = Fs/2;
Fc = 1.1E3;
Fcn = Fc/Fn;
L = 50;
b = fir1(L, Fcn);
figure(1)
freqz(b, 1, 128)
Does it do what you want?
  2 件のコメント
Dick Rusell
Dick Rusell 2014 年 10 月 9 日
I forgot to specify that we had the use the Fourier Series Method by finding h.
Star Strider
Star Strider 2014 年 10 月 9 日
That definitely changes things.
The best resource I can find on that is Low-Pass Filtering by FFT Convolution that also has MATLAB code. All you would need to do is to modify it to your Fs and L. (It’s not an image, so you can copy-paste the code directly from the page.)
I can’t find any MATLAB functions that implement it directly.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeFrequency Transformations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by