Effacer les filtres
Effacer les filtres

How do I add color to this line of code without repeating the time variable everytime?

1 vue (au cours des 30 derniers jours)
plot(time,[accLong,accVert,accLat,],'linewidth',2) % plot all
I do not want to use this version
plot(time,accLong,'r',time,accVert,'b',time,accLat,'k','linewidth',2) % plot all

Réponse acceptée

Ameer Hamza
Ameer Hamza le 24 Sep 2020
Use plot handles to set the color
t = 1:10;
x1 = rand(size(t));
x2 = rand(size(t));
p = plot(t, [x1; x2]);
p(1).color = 'r'; % color of first line
p(2).color = 'b'; % color of second line
  2 commentaires
suleiman abdullahi
suleiman abdullahi le 24 Sep 2020
Thanks for the response, is there another way without creating the variable p?
Ameer Hamza
Ameer Hamza le 24 Sep 2020
I don't think there is an easy way. Any other solution will lead to more variables.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Introduction to Installation and Licensing dans Help Center et File Exchange

Produits


Version

R2019a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by