colorbar: cdata and colors
26 次查看(过去 30 天)
显示 更早的评论
Hi all,
I have a question related to colobar. I am using imagesc function to do some plots, the problem is the same value (cdata) are described by different colors in colorbar (for example in one plot 1.6 corresponds yellow, while in ohter plot yellow corresponds 1.3 ). So my question is how can I modify the colobar in that way in each plots the same values were described by the same color? Thanks in advance for help.
regards Maciek
0 个评论
采纳的回答
Teja Muppirala
2012-5-29
The CAXIS command can used to set the scaling limits on the color, in the same way that you set XLIM or YLIM. For example:
figure
imagesc([1 2 3 4 5 6 7 8 9 10])
colorbar
figure
imagesc(5:.5:10)
ax2 = gca;
caxis(ax2,[1 10])
colorbar
0 个评论
更多回答(4 个)
Stephen
2012-5-29
imagesc automatically scales your image to 'fit' to the colorbar. It can be a huge pain sometimes. If you can get away with it, just plot the images in the same picture like,
a=image 1
b=image 2
imagesc([a b])
they'd have to be the same size though...
another thing you could do is reset the range in the colorbar so that it matches the first image.
create a colormap and crop off some stuff,
cm = jet(100);cm(end-39:end,:)=[];colormap(cm)
or, you could just use image() to plot the pics... if they're too dark, just multiply them by some value so they show up nicely. good luck
0 个评论
Eskapp
2012-5-29
Have a look to the function colormapeditor. There is a tutorial in Matlab documentation.
I think it is exactly what you need.
0 个评论
Matlab2010
2012-10-8
I have been trying to apply the answers given here to http://www.mathworks.com/matlabcentral/answers/50180-caxis-and-colorbar-scaling-issue but they do not seem to work.
Can anyone comment?
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Orange 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!