designing BPFs using butter function

2 ビュー (過去 30 日間)
Mohamed Medhat
Mohamed Medhat 2020 年 6 月 19 日
編集済み: Devineni Aslesha 2020 年 6 月 24 日
How do I design the following BPFs using butter function

採用された回答

Devineni Aslesha
Devineni Aslesha 2020 年 6 月 24 日
編集済み: Devineni Aslesha 2020 年 6 月 24 日
As the frequency response of the Butterworth filter is maximally flat (no ripples), you do not have an option to specify the passband ripple and stopband attenuation values in butter function. In designfilt, you can specify the passband ripple and stopband attenuation values, however, they are not accepted for butterworth filter. You can use designfilt to design a butterworth bandpass filter as shown below.
d = designfilt('bandpassiir', 'FilterOrder', 20, 'HalfPowerFrequency1', 0.4, 'HalfPowerFrequency2', 0.6, 'DesignMethod', 'butter');
fvtool(d)
For more information, refer the following link

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeFilter Design についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by