bodeoption​で位相のYlimのみ​を変更したい

조회 수: 15 (최근 30일)
ryohki wakasa
ryohki wakasa 2020년 11월 18일
답변: Naoya 2020년 11월 24일
上記のYlimで範囲を指定すると,ゲインと位相両方の範囲が変更されます.
位相の範囲のみを[-180, 180]に設定したい場合はどのようにすればよいでしょうか?

답변 (1개)

Naoya
Naoya 2020년 11월 24일
bodeoptions の構造体を 以下の様に p とすると、 YLim を 1x2 のセル配列として定義すると振幅側と位相側の Y軸範囲を別々に設定することができます。
>> p = bodeoptions;
>> p.YLim = {[-30 10],[-180 180]};
>> h = bodeplot(tf(1,[1,1]),p);

카테고리

Help CenterFile Exchange에서 スペクトル測定에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!