How to assign a different color to lines being plotted in a loop?
86 ビュー (過去 30 日間)
古いコメントを表示
Hi All
I am plotting n different lines in one single plot. but what I need it to assign a different color ( even random) for each iteration. and then use it as a Legend.
How do I do this ?
1 件のコメント
Stephen23
2020 年 5 月 12 日
The accepted answer states that line color is determined by the lines colormap. This is not correct.
Line colors are determined by the axes ColorOrder property:
The lines colormap is also defined in terms of the axes ColorOrder.
採用された回答
Akihumi
2020 年 5 月 8 日
編集済み: Akihumi
2020 年 5 月 12 日
* Edits: Sorry for the wrong information about the default line color.
Otherwise, you can try
figure
hold on
randColor = rand(10,3);
for i = 1:10
plot(x(:,i),y(:,i),'Color',randColor(i,:));
end
legend
But the color would be ugly. Instead of rand, you can try other available colormap. For example
figure
hold on
cm = parula(10);
for i = 1:10
plot(x(:,i),y(:,i),'Color', cm(i,:));
end
legend
1 件のコメント
Ameer Hamza
2020 年 5 月 8 日
A correction: By default, the color of lines are chosen from ColorOrder property of the axes, not colormap: https://www.mathworks.com/help/releases/R2020a/matlab/ref/matlab.graphics.axis.axes-properties.html#budumk7_sep_shared-ColorOrder
その他の回答 (1 件)
Isiah Pham
2020 年 5 月 8 日
編集済み: Isiah Pham
2020 年 5 月 12 日
You can make a cell array for each color you want and the pull from it
colors = {['red'],['blue']}
for rep = 1:2
plot((x,rep.*x), colors{rep})
end
This will plot two lines, the first red and the second blue
0 件のコメント
参考
カテゴリ
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!