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

1 Ansicht (letzte 30 Tage)
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

Akzeptierte Antwort

Ameer Hamza
Ameer Hamza am 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 Kommentare
suleiman abdullahi
suleiman abdullahi am 24 Sep. 2020
Thanks for the response, is there another way without creating the variable p?
Ameer Hamza
Ameer Hamza am 24 Sep. 2020
I don't think there is an easy way. Any other solution will lead to more variables.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Introduction to Installation and Licensing finden Sie in Help Center und File Exchange

Produkte


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by