Shortcut to default line colors?
179 次查看(过去 30 天)
显示 更早的评论
I can't remember how long ago MATLAB switched to the new default line color order. Overall, I much prefer the new colors. I'll never go back to the old [0,0,1] blue. However I'd like to be able to use the old shortcut and get the new blue.
plot(x,y,'b-o')
Is there a way for me to redefine the blue produced by this code to be the new default line color?
What I'd most like is for MathWorks to define a new shortcuts '1'-'7' to produce the seven colors in the default sequence, but I would be somewhat satsified if I could hack things so that the old abbreviations give me the new colors.
I know I can do things like
plot(x,y,'color,',[0 0.447 0.741])
to get the new blue, and I have even written little one-line codes that will prevent me from having to memorize this value. However, I often write demos for my undergrads, The old way makes shorter easier codes, but produces graphs that use the bad-looking old color schemes.
0 个评论
回答(1 个)
Walter Roberson
2020-7-30
编辑:Walter Roberson
2020-7-30
cmap = colororder();
returns the current axes color order in a form that is the same as a color map. So you could then do things like
plot(x, y, 'color,', cmap(1,:))
2 个评论
Walter Roberson
2020-7-31
To be explicit then:
There is no way to redefine the colors produced by the letter codes. There are multiple internal locations that have the color values hardcoded for the color names and letters.
What can be changed is the default color order that is produced when multiple lines are plotted without specifying a color.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!