How to change the median value on colorbar

조회 수: 8 (최근 30일)
Vince Clementi
Vince Clementi 2017년 9월 26일
댓글: Vince Clementi 2017년 9월 29일
Hi All,
I am looking to adjust the linearity of my colorbar by changing the value of the median value For example, if colorbar ranges from [-6 6], the median is 0. I want to shift it to +1 or -1).
Is there a one-line solution to this or would I need to create a customized colorbar? If the latter, how would I go about doing that?
Thanks.

채택된 답변

Chad Greene
Chad Greene 2017년 9월 26일
Hi Vince. The answer is you can do this, but you probably don't want to. I think it would mean developing a mathematical transfer function to scale your C data, plot the scaled data, then label the yticks on the colorbar, which will be scaled, but use labels that indicate the unscaled values.
For a simple example, here's what I mean, but simply scaling by a factor of two:
Z = peaks;
figure
subplot(1,2,1)
imagesc(Z)
caxis([-6 6])
colorbar
Z2 = 2*Z;
subplot(1,2,2)
imagesc(Z2)
caxis([-6 6]*2)
cb = colorbar;
set(cb,'ytick',[-12 0 12]','yticklabel',[-6 0 6]')
That works, but it's overly complicated even for a simple scaling without moving the central value around. What you are proposing seems more complicated, more prone to error, and less intuitive for the viewer to understand. In general, if you ever find yourself wanting to do such funny things with the colorbar, or if you find yourself inventing complicated colormaps to show what you want to show, it's probably a good time to step back and rethink what you're doing.
  댓글 수: 7
Chad Greene
Chad Greene 2017년 9월 29일
It would be a easier to diagnose if you could provide a minimal working example. I wonder if you're getting the +/- sign of the pivot value mixed up? For example, here's something similar to your top plot using the default settings (pivot value is the center):
imagesc(peaks(500)/12-1.2)
caxis([-1.8 -0.4])
colorbar
cmocean('bal')
Now try this, which is what I think you want:
cmocean('bal','pivot',-1.1)
But I wonder if this is what you did instead:
cmocean('bal','pivot',1.1)
Vince Clementi
Vince Clementi 2017년 9월 29일
I tried switching the +/- on the pivot mark, but now I'm thinking it's because I haven't set colorbar limits--I let it set itself based on the data. Here's an example of the code (without changing the pivot point):
cmocean('-balance',75);
pcolor(T,Z,dd18o);
shading interp;
set(gca,'YDir','reverse','XMinorTick','on');
colorbar;
c = colorbar;
title(c,['(' char(8240) ')'],'FontSize',12);

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Colormaps에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by