colorbar: cdata and colors

32 visualizzazioni (ultimi 30 giorni)
Maciej
Maciej il 28 Mag 2012
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

Risposta accettata

Teja Muppirala
Teja Muppirala il 29 Mag 2012
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

Più risposte (4)

Stephen
Stephen il 29 Mag 2012
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

Eskapp
Eskapp il 29 Mag 2012
Have a look to the function colormapeditor. There is a tutorial in Matlab documentation.
I think it is exactly what you need.

Maciej
Maciej il 30 Mag 2012
Thanks Teja Muppirala,
Your answer turned out the simplest way to solove my problem, btw I tried before doing something with caxis function but I had to do someting wrong
Regards Maciek

Matlab2010
Matlab2010 il 8 Ott 2012
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?

Categorie

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

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by