ボード関数を用いたボード線図で特定のゲインでの周波数を求める方法
8 views (last 30 days)
Show older comments
Gs = tf(1,[1 1])
bode(Gs)
を使用して任意の伝達関数でのボード線図を書いた場合について質問です.
この時,ゲインが-3dbでの周波数[Hz]を求める方法についてご教授お願いします.
以下蛇足
最初は出力されたボード線図に決め打ちでクリックして探っていましたが,うまくできなかったので質問をさせていただきました.
0 Comments
Accepted Answer
Toshinobu Shintai
on 13 Dec 2022
"bode"コマンドは、戻り値を設定することができます。例えば以下のように実行すると、プロットの値を得られます。
Gs = tf(1,[1 1]);
[mag,phase,wout] = bode(Gs);
例えばmagを調べると、
mag_db = 10*log(squeeze(mag));
plot(mag_db);
となっていますので、-3dbとなる配列番号を調べ、その番号のwoutを調べると、その値が-3dbでの周波数(ただし単位はrad/s)になっています。
More Answers (0)
See Also
Categories
Find more on Control System Toolbox 入門 in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!