How do I set each legend on the curve in multiple plot?
33 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Dear friends!
I have multiple curves plot for which I need to specify the legends automatically. I use the following script in the code;
figure(2)
txt = ['\alpha=' num2str(p)];
plot(t, L, 'displayname', txt, 'linewidth', 2 );
xlabel('Time(Days)')
ylabel('L')
lgd = legend;
lgd.NumColumns = 2
title(lgd, 'Order of FDE, \alpha')
hold on
The point is, there are 10 legends in the same plot the problem is, each legend is associated with different colors not the shape of the curves when they reached more than 4 or 5 legends it repeat the color which create confusion in recognition of the curves. Now, please help me how can I set my legends on top of each curve like the legends shown in the picture below. It is a contour plot, I need exactly as it contain. While the problem is in the curves with legends associated with beta.
Thanks in advance!
0 comentarios
Respuestas (1)
Chad Greene
el 10 de Feb. de 2021
Perhaps the issue isn't the legend, but plotting the desired colors? How about specifying the colors of the plots explicitly, like this:
x = 1:100;
col = parula(10); % rgb values of 10 colors
hold on
for k = 1:10
h(k) = plot(x,k*x,'color',col(k,:),'linewidth',2)
end
legend(h,'location','northwest')
3 comentarios
Chad Greene
el 10 de Feb. de 2021
Yep, you'll want to loop through each curve and plot it individually. So for 10 curves,
for k = 1:1
h(k) = plot(x,Y(:,k),'color',col(k,:));
end
Or perhaps it's Y(k,:), depending on how your data are arranged. Also be sure the index of the color is the loop index k, not txt as you have written.
Ver también
Categorías
Más información sobre Legend en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!