ボード関数を用いたボード線図で特定のゲインでの周波数を求める方法
18 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Gs = tf(1,[1 1])
bode(Gs)
を使用して任意の伝達関数でのボード線図を書いた場合について質問です.
この時,ゲインが-3dbでの周波数[Hz]を求める方法についてご教授お願いします.
以下蛇足
最初は出力されたボード線図に決め打ちでクリックして探っていましたが,うまくできなかったので質問をさせていただきました.
0 commentaires
Réponse acceptée
Toshinobu Shintai
le 13 Déc 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)になっています。
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Control System Toolbox 入門 dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!