Bode Plot of Low Pass Filter and High Pass Filter
17 ビュー (過去 30 日間)
古いコメントを表示
How to plot the bode plot of a low pass filter and a second order high pass filter with the gain and frequency based on the value entered by the GUI user.
0 件のコメント
採用された回答
Victor Wetzel
2017 年 6 月 13 日
編集済み: Victor Wetzel
2017 年 6 月 13 日
You have two solutions here:
1: Implementing the explicit formula of your filter, and do a simple plot. It should look quite like:
w = [20: 10: 20000];
filter = 1/(1 + w^2);
plot(w, 20*log10(filter) );
2: design a filter and use the 'bode' function. The help file of this function might be more helpfull. If you just type 'bode' in the console, you'll see an example
その他の回答 (2 件)
poovaneshvarri nadunchalean
2020 年 11 月 22 日
- Given a Low-pass RC filter with R = 3 kΩ, C = 0.5 µF, Write out the filter’s transfer function and Draw a bode diagram of the system.
0 件のコメント
mahmoud
2023 年 12 月 10 日
w = [20: 10: 20000];
filter = 1/(1 + w^2);
plot(w, 20*log10(filter) );
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Digital Filter Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!