How to find out roll-off from magnitude response of filter in matlab
14 ビュー (過去 30 日間)
古いコメントを表示
How to find out roll-off from magnitude response of filter in matlab?
This is from doc frequency response of matlab site
0 件のコメント
回答 (1 件)
Chunru
2021 年 9 月 23 日
fs = 2000;
[b,a] = butter(9,400/(fs/2));
[h, f] = freqz(b,a,16384,fs);
h = 20*log10(abs(h));
[~, i3db] = min(abs(h - 10*log10(1/2)));
f3db = f(i3db);
plot(f, h);
xline(f3db)
grid on
ylim([-60 0])
8 件のコメント
参考
カテゴリ
Help Center および File Exchange で Filter Design についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!