2枚以上のfigureを並べる方法

71 views (last 30 days)
Naomichi Shimomura
Naomichi Shimomura on 24 Oct 2019
nyquist線図とbode線図を並べて表示したいのですが、先に描いたグラフがあとに描いたグラフに消されてしまします。例えば以下のコードです。
L1 = tf(4, [1 3 6 12 8 ]) L2 = tf(16, [1 3 6 12 8 ])
nyquist(L1, L2)
bode(L1, L2)
この場合nyquist線図が表示されません。どうすればいいかどなたか教えてください。

Accepted Answer

Takumi
Takumi on 24 Oct 2019
Edited: Takumi on 24 Oct 2019
最も簡単な方法は新しくFigureウィンドウを作成することです。
L1 = tf(4, [1 3 6 12 8 ])
L2 = tf(16, [1 3 6 12 8 ])
nyquist(L1, L2)
figure
bode(L1, L2)
  1 Comment
Naomichi Shimomura
Naomichi Shimomura on 25 Oct 2019
出来ました。お答えいただきありがとうございました。

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!