Use of colours with Brewermap
33 views (last 30 days)
Show older comments
Hi,
I would like to use the colours "Purples" in my plot where I have 3 lines. However, if I write in the code
set(0, 'DefaultAxesColorOrder', brewermap(3, 'BuPu'))
it will show the first, middel and last colourschemes. I want the last 3, thus, the darkest purples.
Any help with this?
Thanks in advance!
1 Comment
Adam
on 28 Nov 2018
Edited: Adam
on 28 Nov 2018
I don't use brewerMap so I don't know its allowed calling syntaxes, but I would imagine you need to first create a colourmap of the size from which you wish to select the final 3 and then just use the final 3 from that resulting colourmap. If you just ask for 3 colours it will give the first the last and then one interpolated in the middle. If you ask for 256 it will give the first, the last and 254 interpolated between those. There is no fixed 'last 3 colours' for a colourmap though, in general, it all depends how fine or coarse a colourmap you create as to what the 'last 3' colours are.
Accepted Answer
Stephen23
on 28 Nov 2018
Edited: Stephen23
on 28 Nov 2018
I guess you are referring to my FEX submission brewermap:
All colormap functions that I have seen return the entire colormap, which you can easily index into yourself:
map = brewermap(9,'BuPu');
set(0, 'DefaultAxesColorOrder', map(1:3,:)) % first three rows
set(0, 'DefaultAxesColorOrder', map(end-2:end,:)) % last three rows
Note that all of ColorBrewer's sequential colorschemes are defined with nine nodes. You can return the colormap in reverse order by prefixing an asterisk to the colorscheme name, e.g. '*PuBu'. You might find that useful to get the correct order of colors that you need.
More Answers (0)
See Also
Categories
Find more on Blue in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!