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

1 view (last 30 days)
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

Accepted Answer

Ameer Hamza
Ameer Hamza on 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

More Answers (0)

Categories

Find more on Introduction to Installation and Licensing in Help Center and File Exchange

Products


Release

R2019a

Community Treasure Hunt

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

Start Hunting!