How to plot different parts of one vector with different colors?
46 ビュー (過去 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
0 件のコメント
採用された回答
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 件のコメント
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
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
2018 年 2 月 2 日
4 件のコメント
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
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 Center および File Exchange で Data Distribution Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!