複数のボード線図に対して一つのレジェンドを付ける方法
显示 更早的评论
例えば下記のように複数のボード線図に対して,一つのレジェンドを付けたいのですが,方法を教えてください.
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 个)
类别
在 帮助中心 和 File Exchange 中查找有关 応答の計算と可視化 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!