draw a line at the coordinates and paint it

7 views (last 30 days)
Lev Mihailov
Lev Mihailov on 22 Nov 2019
Commented: darova on 22 Nov 2019
I did how to draw a line along the coordinates, but I don’t know how to color it.
a=[110 120 70 140 150]
b=[20 30 40 50 80]
red=[3 2 1 2 3]
plot(a,b)
1.png
it shows how this can be done in another program. I have such a question, is it possible to do this in Matlab ???
p.s. the main thing is that on the line it would be possible to distinguish between changes
  2 Comments
Walter Roberson
Walter Roberson on 22 Nov 2019
How does the red array correspond to changes in the color of the line? You change color at about 83 or so, but none of your variables have value that is about 83, and you change back around 108 or so; that could plausibly be at the same 110 as your first a value, but you do not have any 110 coded in the middle of an array that might signal a change at that location.

Sign in to comment.

Answers (2)

KALYAN ACHARJYA
KALYAN ACHARJYA on 22 Nov 2019
Edited: KALYAN ACHARJYA on 22 Nov 2019
a=[110 120 70 140 150]
b=[20 30 40 50 80]
red=[3 2 1 2 3]
plot(a,b,'r','linewidth',10)
%........^ color..........^ width of the line

Walter Roberson
Walter Roberson on 22 Nov 2019

Tags

Products

Community Treasure Hunt

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

Start Hunting!