필터 지우기
필터 지우기

How to modify the showing colorbar range?

조회 수: 3 (최근 30일)
zongxian
zongxian 2020년 8월 27일
댓글: zongxian 2020년 8월 27일
External program will be created a image, for example
image(rand(100,100)*10)
colormap(rand(10,3))
I will add a colorbar by my function, it simple
colorbar
Now I only show part of the colorbar by colorbar('Ylim',[1,6]). But I want to change the color of the 5th color block, let it same as the last color block. (the 5th color block of the right image should be changed to the last color (of left image)).
No need to care about the Ticks of the 5th color block, (maybe showing like '>5', or any other string).

채택된 답변

Image Analyst
Image Analyst 2020년 8월 27일
Try this:
image(rand(100,100)*10)
cmap = rand(10, 3)
colormap(cmap)
% Now put color in block 10 into block 5
cmap(5) = cmap(10);
colormap(cmap);
caxis([1, 6])
  댓글 수: 1
zongxian
zongxian 2020년 8월 27일
In this way, I can get the what I want, thank you.

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

추가 답변 (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