Effacer les filtres
Effacer les filtres

changing the legend line style (":","-","--","-.") for 4 black lines in plot instead of using multip colour

3 vues (au cours des 30 derniers jours)
NOUFA
NOUFA le 2 Juil 2022
Commenté : NOUFA le 11 Oct 2022
What should i add to appear the different black line style
figure;
plot([1:M]/M,u,'DisplayName','M='+string(M),'LineWidth',1); hold on;
xlabel('i/M','FontWeight','bold','FontSize',12);
ylabel('U','FontWeight','bold','FontSize',12);
lgd=legend;
lgd.NumColumns = 1;
lgd.FontSize = 12;
ax = gca;
ax.XAxis.FontWeight = 'bold';
ax.YAxis.FontWeight = 'bold';
  1 commentaire
Jan
Jan le 2 Juil 2022
Hint: [1:M] concatenates the vector 1:M with nothing. Slightly faster: (1:M) / M

Connectez-vous pour commenter.

Réponses (1)

Jan
Jan le 2 Juil 2022
figure;
axes('NextPlot', 'add', ...
'LineStyleOrder', cellstr([":", "-", "--", "-."]), ...
'ColorOrder', zeros(1, 3));
plot(rand(10, 4))
legend

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by