matlab设置colorbar备注位置

1、备注在colorbar上方

c1=colorbar;

set(get(c1,'title'),‘string’,'ssh(cm)','fontsize',20);

matlab设置colorbar备注位置_第1张图片

2、备注在colorbar侧面

c1=colorbar;

set(get(c1,'ylabel'),'string','sea level trend(mm/year)','fontsize',20);

matlab设置colorbar备注位置_第2张图片

3、当colorbar为横向时,改变备注位置

ck=colorbar('horiz');
set(ck,'Position',[0.2 0.06 0.6 0.02]);
set(get(ck,'title'),'string','(m)','fontsize',10,'position',[380 0]);

​​​​​​​

 

你可能感兴趣的:(matlab,matlab)