saving edited colormap data

88 visualizaciones (últimos 30 días)
Adi Natan
Adi Natan el 9 de Jul. de 2015
Editada: Walter Roberson el 6 de Jun. de 2018
After editing an existing colormap with the colormapeditor, I want to save it. The documentation states that I should do something like:
mycmap = get(fig,'Colormap');
However, the saved colormap, mycmap, has the original colormap data not the eddited one. Here's a minimal example:
imagesc(peaks(10));
colormap(hot(6))
Now go into the figure's gui colormap editor using >Edit>Colormap and only change yellow to blue. Now after that press Apply see that indeed the figure has changed. Now write on the command line:
mycmap = get(gcf,'Colormap')
mycmap =
0.5000 0 0
1.0000 0 0
1.0000 0.5000 0
1.0000 1.0000 0
1.0000 1.0000 0.5000
1.0000 1.0000 1.0000
there no "blue" ([0 0 1]) color. Interestingly, when the figure is saved the colormap is saved with it, but for some reason I cant access the edited colormap. What am I doing wrong? (I'm using Matlab 2014b)

Respuesta aceptada

Adi Natan
Adi Natan el 12 de Oct. de 2015
It looks like the colormap is now associated with the axes rather than the figure. So,
cmap = colormap(gca);
will retrieve the edited map.
  3 comentarios
Adi Natan
Adi Natan el 28 de Dic. de 2015
saying "So use gca" is a very partial answer. I had to go and investigate how one should use gca, and that was far from the regular way gca is usually used (i.e. set(gca...) ). that is why I felt I had to write the full answer.
Zhao-Yang CHAI
Zhao-Yang CHAI el 3 de Mayo de 2018
Very useful! I have met the same problem and maybe it's a bug. It's strange that the colormaps of gca and gcf are different.

Iniciar sesión para comentar.

Más respuestas (2)

Walter Roberson
Walter Roberson el 10 de Oct. de 2015
Starting in R2014b, colormaps are per-axes rather than per-figure. So use gca (or some other way of identifying the axes) instead of gcf .
  2 comentarios
hamed amini
hamed amini el 26 de Mayo de 2018
mycbar= get(gca,Colormap'); % this works
set(gcf,'Colormap',mycbar); %this works
set(gca) does not work in R2017a. This does not sound right and is confusing.
Walter Roberson
Walter Roberson el 6 de Jun. de 2018
Editada: Walter Roberson el 6 de Jun. de 2018
?
set(gca, 'Colormap', mycbar)
works

Iniciar sesión para comentar.


Sean de Wolski
Sean de Wolski el 9 de Jul. de 2015
Is gcf, the same as fig?
  6 comentarios
Ken
Ken el 10 de Oct. de 2015
I have the same problem! This is a bug that needs fixing, or a good explaination
Adi Natan
Adi Natan el 12 de Oct. de 2015
I found the answer, see below...

Iniciar sesión para comentar.

Categorías

Más información sobre Blue en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by