Legend does not recognize semilogx plot
显示 更早的评论
The legend I plot does not recognize all my plots. I have 1 bode plot (only the magnitude) and 2 semilogx plots. The first two semilogx plots do not seem to appear in the legend. Logically, Matlab also tells me that it is ignoring 'extra' legend entries.
This is my relevant code
figure(5),clf(5)
p = bodeoptions('cstprefs');
p.FreqUnits = 'rad/s';
p.PhaseVisible = 'off';
hold on
semilogx(w,spec_y(1:length(f)),'r')
semilogx(w,spec_y0(1:length(f)),'b')
bodeplot(G0,p,'g');
legend('y','y0','Exact')
grid on
%set(gca, 'XScale', 'log');
xlabel('w (rad/s)')
ylabel('|Mag| (dB)')
This is the output, showing only the first legend entry for the 'bodeplot(G0,p,'g')' plot.

采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Legend 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
