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

6 Ansichten (letzte 30 Tage)
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';

Antworten (1)

Jan
Jan am 2 Jul. 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