Coloring each line in a stairs graph with a different color
5 ビュー (過去 30 日間)
古いコメントを表示
Hello,
I would like to color each horizontal line of the stairs I am creating in a different color.
demand = [0, 117, 38, 35, 160];
prices = [-1, 0, 0.62, 9.6, 8.9];
[~, idx] = sort(prices);
cumVolume = cumsum(demand(idx));
stairs(cumVolume, prices(idx));
In above example, I have 4 horizontal lines in my stairs and I would like each of them to be displayed in a different color.
Could you please help me with that ?
Thank you very much.
Cecile
0 件のコメント
回答 (1 件)
kjetil87
2013 年 7 月 19 日
if instead return the plot values:
[xx,yy]=stairs(cumVolume, prices(idx))
you can plot it multiple times using the
hold on
command.
e.g:
plot(xx,yy,'b');
hold on;
plot(xx(1:end-3),yy(1:end-3),'c')
plot(xx(1:end-5),yy(1:end-5),'r')
plot(xx(1:end-7),yy(1:end-7),'g')
for a bigger plot you need to make a loop or something, and use a color index array or something like that. Not the best code but it will do the trick :)
参考
カテゴリ
Help Center および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!