您现在的位置是:首页 > 短信大全

matlab设置colorbar标题的两种方式

作者:淼淼时间:2024-03-29 18:51:47分类:短信大全

简介  文章浏览阅读1.4k次,点赞2次,收藏3次。【代码】matlab设置colorbar标题的两种方式。_matlab colorbar标题

点击全文阅读

%% 第一种figure;A = rand(3,4,3);A1 = A(:,:,1);A2 = A(:,:,2);A3 = A(:,:,3);contourf(A1,A2,A3,30); colormap('jet');colorbar;my_handle=colorbar;my_handle.Label.String = 'depth/km';my_handle.Label.FontSize = 15;%% 第二种figure;A = rand(3,4,3);A1 = A(:,:,1);A2 = A(:,:,2);A3 = A(:,:,3);% my_handle.Label.String = 'Elevation (km)';% my_handle.Label.FontSize = 15;contourf(A1,A2,A3,30); colormap('jet');colorbar;my_handle=colorbar;my_handle.Title.String = 'depth/km';my_handle.Title.FontSize = 12;%     t=get(my_handle,'YTickLabel');%     t=strcat(t,'km');%     set(my_handle,'YTickLabel',t);

第一种:

第二种:

点击全文阅读

郑重声明:

本站所有活动均为互联网所得,如有侵权请联系本站删除处理

我来说两句