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

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線図が表示されません。どうすればいいかどなたか教えてください。

 Respuesta aceptada

Takumi
Takumi el 24 de Oct. de 2019
Editada: Takumi el 24 de Oct. de 2019

8 votos

最も簡単な方法は新しく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 comentario

Naomichi Shimomura
Naomichi Shimomura el 25 de Oct. de 2019
出来ました。お答えいただきありがとうございました。

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Preguntada:

el 24 de Oct. de 2019

Comentada:

el 25 de Oct. de 2019

Community Treasure Hunt

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

Start Hunting!