How to plot different parts of one vector with different colors?

98 次查看(过去 30 天)
Hello. I have a time vector and ecg vector on y axis which need to be plotted in the same figure with 3 different colors. There are three different zones (time before), suspicious zone in the middle (which I want to be yellow) and time after. How can it be plotted? I tried to plot like in the code below, but it can't be plotted like that.
if true
time1colored(1) = time1(1:523);
time1colored(2) = time1(524:704);
time1colored(3) = time1(705:end);
rr3colored(1) = rr3(1:523);
rr3colored(2) = rr3(524:704);
rr3colored(3) = rr3(705:end);
colors='gyr';
figure; cla;
for i=1:3
plot(time1colored(1),rr3colored(1), 'Color', colors(i))
end
plot(time1,rr3)
xlabel('time [s]'),ylabel('interval [ms]')
end

采纳的回答

James Tursa
James Tursa 2018-1-30
编辑:James Tursa 2018-1-30
Something like this if you go with the segmented approach:
ix = { 1:523, 524:704, 704:numel(time1) };
colors = 'gyr';
figure; cla;
for i=1:3
plot(time1(ix{i}),rr3(ix{i}),'Color',colors(i)); hold on
end
  3 个评论
Vidz
Vidz 2019-10-2
编辑:Vidz 2019-10-2
gives error as runs out of colors
Index exceeds the number of array elements (3).
So, I did
plot(time1(ix{i}),rr3(ix{i}),'Color',[rand rand rand]); hold on
Walter Roberson
Walter Roberson 2019-10-2
The color list is hardcoded by way of
colors = 'gyr';
You can expand that to include any of the 8 color codes bcgkmrwy
If you need more than that, then I suggest using one of the color tables, such as
ctab = copper(23);
[...]
plot(time1(ix{i}), rr3(ix{i}), 'Color', ctab(i,:)); hold on

请先登录,再进行评论。

更多回答(2 个)

Walter Roberson
Walter Roberson 2018-1-30
This is not possible in MATLAB using plot() or related calls. plot() and related calls use line() objects, and line() objects are restricted to a single color.
You can break the vector into segments and draw the segments separately.
If you look in the File Exchange you will find a couple of different contributions for drawing colored lines.

miki90
miki90 2018-2-2
Sorry for posting on an answered post, but, applying this code to plotting with markers, I haven't got only markers but the points connected with lines too. Can anyone tell me why?
if true
ip = { 1:523, 524:824, 824:numel(rr4) };
colors = ['g*','y*','r*'];
figure(); cla;
for i=1:3
plot(rr4(ip{i}),rr5(ip{i}),colors(i)); hold on
end
end
  4 个评论
James Tursa
James Tursa 2018-2-2
You could have used your char array as is, but you would have to change that colors(i) to colors(i,:). I think this makes the code a bit harder to read, and also your construction of colors depends on all of your row strings being the same length. The cell array approach looks neater IMO and also allows you to easily use different length char strings for each color if you wanted to.
Walter Roberson
Walter Roberson 2018-2-2
Also as well as using colors(i,:) you would have had to use colors = ['g*';'y*';'r*'] and all of the specifications would have had to have been the same length. Your existing colors = ['g*','y*','r*']; is building a single character vector with contents 'g*y*r*' . Using cell arrays is better in this case.
Alternately from R2017a onwards you could stay with your existing code but use colors = ["g*","y*","r*"]; which would not require any change to the indexing you are using.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Simulink Functions 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by