using RGB colour code while looping plots
6 次查看(过去 30 天)
显示 更早的评论
Hi,
while plotting different arrays in a loop I assigned them different colours. But as the contrast between the different colours is not very good, I´d like to have the colours in RGB code instead of the predefined 'r', 'k', ...
j = 1;
k = 1;
str = {'A1', 'A2', 'A3', 'A4'};
col = {'r', 'k', 'g', 'b'};
for i = 1:20:80
plot(M_3(i:19+i), col{k}, 'LineWidth',1);
str = [str ("Graph " + str(j))];
hold on
j = j+1;
k = k+1;
end
I thought of something like col = {4 31 74, 5 41 98}; but an error pops up.
Can you help me using another way to define different colours?
0 个评论
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Blue 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!