【Matlab】如何给colorbar添加单位
2017-1-15 20:51
阅读:28348
标签:MATLAB, colorbar
[x,y,z]=peaks(60);
mesh(x,y,z);
h=colorbar;
set(get(h,'title'),'string','km');
有时不是在title上加单位,而是在数字上面加,可以:
h=colorbar;
t=get(h,'Yticklabel');
t=strcat(t,'km');
set(h,'Yticklabel',t);
设置colorbar字体大小为14号:
colorbar('Fontsize',14);
或者
h=colorbar;
set(h,'Fontsize',14)
转载本文请联系原作者获取授权,同时请注明本文来自叶瑞杰科学网博客。
链接地址:https://wap.sciencenet.cn/blog-2824237-1027796.html?mobile=1
收藏
当前推荐数:0
推荐到博客首页
网友评论0 条评论