Using Legend
15 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have a 5 by 40 matrix and I’d like to plot 27 first columns as one color and last 13 columns as second color. My problem is that when i put legend to label each color, both legends are shown with the same color (always the same color as the first 27 columns). I appreciate your help. Thanks!
0 comentarios
Respuesta aceptada
Fangjun Jiang
el 5 de Jun. de 2011
Look at the example in the document here. The legend should have the same color as they are used in the curve. What version of Matlab are you using?
Más respuestas (1)
Fangjun Jiang
el 6 de Jun. de 2011
In your example, if you have legend('a','b','c','d','e','f'), you'll have the right legend. The problem is that you have 6 curves, the first 4 are color blue and the last 2 are color red. You only made 2 legend marks thus it took the color of the first 2 curves (both are blue). Matlab legend() function is doing the right thing.
But, that is the problem you want to solve. Try this,
h=legend('a')
c=get(h,'Children')
set(c,'Color',[0 1 0])
You will see that it only makes one legend mark. Each legend mark will have three children (probably for line, marker and string). You can change the color for all of them by specifying the color as [Red Green Blue]. I believe this can solve your original problem.
3 comentarios
Fangjun Jiang
el 6 de Jun. de 2011
h=legend('a','b');
c=get(h,'Children');
set(c(1:3),'Color',[0 1 0]);
set(c(4:6),'Color',[1 0 0]);
Try to match them.
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!