bodeoptionで位相のYlimのみを変更したい
20 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
上記のYlimで範囲を指定すると,ゲインと位相両方の範囲が変更されます.
位相の範囲のみを[-180, 180]に設定したい場合はどのようにすればよいでしょうか?
0 Commenti
Risposte (1)
Naoya
il 24 Nov 2020
bodeoptions の構造体を 以下の様に p とすると、 YLim を 1x2 のセル配列として定義すると振幅側と位相側の Y軸範囲を別々に設定することができます。
>> p = bodeoptions;
>> p.YLim = {[-30 10],[-180 180]};
>> h = bodeplot(tf(1,[1,1]),p);
0 Commenti
Vedere anche
Categorie
Scopri di più su Frequency-Domain Analysis in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!