Legend does not recognize semilogx plot
Afficher commentaires plus anciens
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.

Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Legend dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
