[X,Y]=meshgrid(lon,lat);
%% 绘图
subplot(2,2,1);
hold on
pcolor(X,Y,A')
shading flat
d=5;
dd =1;
quiver(X,Y,dmean(U1,3)',dmean(V1,3)',0);
hold on
h=quiver(110,15,d*1,0,0);
set(h,'color','r','linewidth',1,'Maxheadsize',7); %控制箭头大小
text(110,16.5,'1 m/s','fontsize',10);
set(gca,'Xlim',[40 120]);
set(gca,'Ylim',[10 60]);
set(gca,'XTick',[40:20: 120]);
set(gca,'YTick',[10:10: 60]);
set(gca,'XTicklabel',{'40°E' '60°E' '80°E' '100°E' '120°E'});
set(gca,'YTicklabel',{'10°N' '20°N' '30°N' '40°N' '50°N' '60°N'});
set(gca,'fontweight','Bold','fontsize',16,'linewi',1)
xlabel('经度','FontSize',16);
ylabel('纬度','Fontsize',16);
set(gca,'fontweight','Bold','fontsize',15,'linewidth',2)
title('a','fontweight','Bold','fontsize',18)
网友评论