change the scale of colorbar

35 次查看(过去 30 天)
I wanna change the scale of the color bar. of the image below to [0 0.02]
I tried many method, like shown below
image(x,y,D')
c = colorbar;
%c.Limits = [0 0.02]
%set(c,'ylim',[0 0.02])
but the outcome is like this. The colorbar become the same color. only the range changes instead of the scale. I want the colorbar to be different from 0 to 0.02. How should I do that? Thanks for answering!

采纳的回答

Karim
Karim 2022-8-8
you can use the caxis command, simply add caxis( [0 0.02]) below the colorbar command.
figure
surf(rand(10,10))
c = colorbar;
caxis([0 0.2])
  3 个评论
Image Analyst
Image Analyst 2022-8-8
@Zhihan Wu attach D in a .mat file with the paperclip icon so we can help you further. Make it easy for us to help you and you'll get an answer faster.
save('answers.mat', 'D');
Zhihan Wu
Zhihan Wu 2022-8-13
I think my problem is solved. Thank you all!

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Colorbar 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by