Use of colours with Brewermap

30 visualizzazioni (ultimi 30 giorni)
A_V_G
A_V_G il 28 Nov 2018
Modificato: A_V_G il 28 Nov 2018
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 Commento
Adam
Adam il 28 Nov 2018
Modificato: Adam il 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.

Accedi per commentare.

Risposta accettata

Stephen23
Stephen23 il 28 Nov 2018
Modificato: Stephen23 il 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.
  1 Commento
A_V_G
A_V_G il 28 Nov 2018
Modificato: A_V_G il 28 Nov 2018
Great, it works!
Thanks!

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Colormaps in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by