different colors for variable legend
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello there,
So, I have used variable legend in my code and the values are about 10 but the colors are repeating itself, I am looking for a method another than specifying colors for every different variable myself. Your suggestions will help. Thank you!
2 comentarios
Dongyue
el 26 de Mayo de 2023
Hi Ashi,
Could you please provide additional context and details regarding the problem you are encountering? It would be helpful to include specific code or plots.
If you are working with a plot in MATLAB, the software automatically assigns different colors to distinct variables, eliminating the need for manually specifying colors for each variable. Here is a basic example:
x= linspace(0,2*pi);
y1 = sin(x);
y2 = cos(x);
plot(x,y1)
hold on
plot(x,y2)
hold off
legend('sin(x)','cos(y)')
And here is a link to the colormap function, which could be useful for your situation:
Respuestas (0)
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!