Multiple Legends Multiple Colours
Afficher commentaires plus anciens
See code below. I want to label each colomn in a and b in the plot. The lines from variable a should have same colour theme variations and the line in b should have same colour theme variations....please please help me. dark yellow, yellow, gold...and so on.
a=rand(10,5);
b=rand(10,5);
c=rand(10,1);
d=rand(10,1);
hold(app.UIAxes,'on')
plot(app.UIAxes,a,c);
plot(app.UIAxes,b,c);
plot(app.UIAxes,d,c,'-b');
hold(app.UIAxes,'off')
legend(app.UIAxes)
Réponses (1)
Aghamarsh Varanasi
le 18 Juin 2021
0 votes
Catégories
En savoir plus sur Legend dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!