- 积分
- 5966
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2012-9-11
- 最后登录
- 1970-1-1
|
楼主 |
发表于 2016-6-2 17:57:30
|
显示全部楼层
加入画图的模块:
YLabel=c(16:27,3);
XLabel=cell(1,34);
XLabel=num2cell([1:34]);
% YLabel=cell(1,12);
% YLabel=num2cell([1:34]);
Z=cell2mat(c(16:end-1,4:end));
x0=[1:length(XLabel)];
y0=[1:length(YLabel)];
[xx,yy]=meshgrid(x0,y0);
clf
set(gcf,'Position',[100 50 1600 800], 'color','w')
pcolor(xx,yy,Z);
h=colorbar('Eastoutside');
t = get(h,'YTickLabel');
t = strcat(t,'℃');
set(h,'YTickLabel',t);
set(gca,'YTickLabel',YLabel');
set(gca,'XTick',x0);
set(gca,'XTickLabel',XLabel);
set(gcf,'PaperUnits','inches','PaperPosition',[0 0 14 5])
print(gcf,'-djpeg',[INPUTDIR_Obs,st,'T_test_Mosaic.jpg'],'-r300');
图片中,横轴数字代表站点(就不具体显示是哪些站了哈),马赛克代表预报对实况相差的度数:
|
|