How can I create non-uniform color divisions in a Colorbar ?

I have a matrix of N x 3 dimension. The 1st and 2nd column are used to plot X and Y axis respectively. The 3rd column value (range 0~1) is plotted using color in the axis. I use the following code
A = rand(10,3);
figure
colormap(jet(3))
scatter(A(:,1), A(:,2), 30, A(:,3), 'filled');
colorbar
caxis([0 1])
The code resulted in above plot. Here, since I mentioned jet(3), the colorbar is divided equally into three.
In my case, I need to set 2 threshold values t1 and t2 so that the colorbar gets divided at this threshhold.
For e.g. I set t1=0.1 and t2=0.4, the colorbar should be divided as follows
0-0.1 : Blue , 0.1-0.4 : Cyan , 0.4-1: Yellow
Is there any method to split colorbar non-uniformly ? Any leads will be appreciated.

 채택된 답변

Hi Varun Pai,
you have to create your own colormap in order to have non-uniformly distributed colors. Due to your division of the color axis you have to use 10 color definitions.
A = rand(10,3);
fh = figure;
ah = axes(fh);
cm = colormap(jet(3));
% 0 : 0.1 - dark blue
% 0.1 : 0.4 - light blue
% 0.4 : 1.0 - yellow
% use ten color containers
newColormap = cm(1,:);
newColormap = [newColormap; repmat(cm(2,:),3,1)];
newColormap = [newColormap; repmat(cm(3,:),6,1)];
scatter(ah, A(:,1), A(:,2), 30, A(:,3), 'filled');
cb = colorbar(ah);
caxis(ah,[0 1])
colormap(ah,newColormap);
Kind regards,
Robert

댓글 수: 2

Thank you Robert. I understand your solution.
In some case, I have threshold values up to 4 places of decimals. for e.g: 0.1673. So I think I have to divide the whole colorbar based on number of decimal places and then use repmat for same color.
Am I right ?
It would have been nice if matlab allows to set custom ranges.
Unfortunately, there is no way of defining intermediate color limits. Maybe you reconsider whether or not visual tricks will help you to overcome the need for accuracy. Otherwise, yes, you would have to define your colormap in the granularity of what you desire to resolve.

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 White에 대해 자세히 알아보기

제품

릴리스

R2021b

태그

질문:

2022년 9월 21일

댓글:

2022년 9월 21일

Community Treasure Hunt

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

Start Hunting!

Translated by