Legend does not recognize semilogx plot
Show older comments
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.

Accepted Answer
More Answers (0)
Categories
Find more on Legend in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!