saving edited colormap data
46 ビュー (過去 30 日間)
古いコメントを表示
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)
0 件のコメント
採用された回答
Adi Natan
2015 年 10 月 12 日
3 件のコメント
Zhao-Yang CHAI
2018 年 5 月 3 日
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.
その他の回答 (2 件)
Walter Roberson
2015 年 10 月 10 日
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 件のコメント
hamed amini
2018 年 5 月 26 日
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
2018 年 6 月 6 日
編集済み: Walter Roberson
2018 年 6 月 6 日
?
set(gca, 'Colormap', mycbar)
works
Sean de Wolski
2015 年 7 月 9 日
Is gcf, the same as fig?
6 件のコメント
Ken
2015 年 10 月 10 日
I have the same problem! This is a bug that needs fixing, or a good explaination
参考
カテゴリ
Help Center および File Exchange で Blue についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!