【MATLAB】绘图的相关设置
2016-10-26 20:48
阅读:2837
标签:MATLAB, 设置, 绘图
1.坐标轴位置的设置
pos=[left bottom width height];
subplot('position',pos);
2.colorbar位置的设置
hh=colorbar('fontsize',14,'fontweight','normal');
set(hh,'position',[0.825 0.1 0.018 0.2]) % colorbar 位置
3.figure背景颜色设置
figure('color','w') %===背景为白色
figure('color',[0.5 0.5 0.5]) %===背景为灰色
4.print的图片颜色发生变化的解决方案
set(gcf,'InvertHardcopy','off')
set(gcf,'paperposition',[0 0 15 8])
pngnam=strcat(outdir,'station_topo_v2');
print(pngnam,'-dtiff','-r400')
转载本文请联系原作者获取授权,同时请注明本文来自叶瑞杰科学网博客。
链接地址:https://wap.sciencenet.cn/blog-2824237-1011038.html?mobile=1
收藏
当前推荐数:0
推荐到博客首页
网友评论0 条评论