draw a line at the coordinates and paint it

5 Ansichten (letzte 30 Tage)
Lev Mihailov
Lev Mihailov am 22 Nov. 2019
Kommentiert: darova am 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 Kommentare
Walter Roberson
Walter Roberson am 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.
darova
darova am 22 Nov. 2019
Did you try?
plot(x,y,'color','r')

Melden Sie sich an, um zu kommentieren.

Antworten (2)

KALYAN ACHARJYA
KALYAN ACHARJYA am 22 Nov. 2019
Bearbeitet: KALYAN ACHARJYA am 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 am 22 Nov. 2019

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by