複数のボード線図に対して一つのレジェンドを付ける方法
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
貴弘
el 23 de Oct. de 2023
Editada: Atsushi Ueno
el 23 de Oct. de 2023
例えば下記のように複数のボード線図に対して,一つのレジェンドを付けたいのですが,方法を教えてください.
for i = 1:10
sys1 = tf(i,[1 1])
bode(sys1, 'b-')
hold on
end
sys2 = tf(20,[1 1])
bode(sys2, 'r--')
上記に対して,10個のボード線図(青の実線)にsys1,1個のボード線図(赤の破線)にsys2のようにレジェンドを付けたいです.
0 comentarios
Respuesta aceptada
Dyuman Joshi
el 23 de Oct. de 2023
Working with bode-plot figures is difficult.
A (simple) approach is to use empty strings for the rest of the plots
figure
hold on
for i = 1:10
sys1 = tf(i,[1 1]);
bode(sys1, 'b-');
end
sys2 = tf(20,[1 1]);
bode(sys2, 'r--');
legend({'', '', '', '', '', '', '', '', '', 'Sys1', 'Sys2'})
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre ループと条件付きステートメント en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!