when i use the legend command , it works except the colors of the lines,they're the same color ?
Mostra commenti meno recenti
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 Commento
Azzi Abdelmalek
il 18 Giu 2013
post your code ( just lines using plot)
Risposte (1)
Shashank Prasanna
il 18 Giu 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?
Categorie
Scopri di più su Legend in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!