Use of colours with Brewermap

40 Ansichten (letzte 30 Tage)
A_V_G
A_V_G am 28 Nov. 2018
Bearbeitet: A_V_G am 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 Kommentar
Adam
Adam am 28 Nov. 2018
Bearbeitet: Adam am 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.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Stephen23
Stephen23 am 28 Nov. 2018
Bearbeitet: Stephen23 am 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 Kommentar
A_V_G
A_V_G am 28 Nov. 2018
Bearbeitet: A_V_G am 28 Nov. 2018
Great, it works!
Thanks!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Colormaps finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by