when i use the legend command , it works except the colors of the lines,they're the same color ?
Mostrar comentarios más antiguos
I plotted 2 lines in different colors in the same figure by hold on, then made a legend
legend('Infinite sum','Finite sum') the legend is created but the color of the lines inside it are the same,instead of being different !
1 comentario
Azzi Abdelmalek
el 18 de Jun. de 2013
post your code ( just lines using plot)
Respuestas (1)
Shashank Prasanna
el 18 de Jun. de 2013
If your lines are of the same color then the legend will show the same color. If you plot using different colors, then legend will show them with those colors.
plot(rand(10,1))
hold on
plot(rand(10,1),'r')
legend('a','b')
What does the above piece of code show? are you able to see two different legend colors?
Categorías
Más información sobre Legend en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!