1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
subplot(2,2,1) ;
contour(X,Y,Mn,'k-.') ; grid ;
hold on ;
pcolor(X,Y,Mn) ;
colormap(flipud(gray)) ;
shading interp
brighten(0.5)
hold on ;
plot(C(:,1),C(:,2),'k-','LineWidth',1.2) ;
xlabel('Longitude (°)') ;
ylabel('Latitude (°)') ;
colorbar ;
axis equal tight;
subplot(2,2,2) ;
contour(X,Y,Mx,'k-.') ; grid ;
hold on ;
pcolor(X,Y,Mx) ;
colormap(flipud(gray)) ;
shading interp
brighten(0.5)
hold on ;
plot(C(:,1),C(:,2),'k-','LineWidth',1.2) ;
xlabel('Longitude (°)') ;
ylabel('Latitude (°)') ;
colorbar ;
axis equal tight;
subplot(2,2,3) ;
contour(X,Y,Mext(1:28,:),'k-.') ; grid ;
hold on ;
pcolor(X,Y,Mext(1:28,:)) ;
colormap(gray) ;
shading interp
brighten(0.5)
hold on ;
plot(C(:,1),C(:,2),'k-','LineWidth',1.2) ;
xlabel('Longitude (°)') ;
ylabel('Latitude (°)') ;
colorbar ;
axis equal tight;
subplot(2,2,4) ;
contour(X,Y,Mext(29:56,:),'k-.') ; grid ;
hold on ;
pcolor(X,Y,Mext(29:56,:)) ;
colormap(flipud(gray)) ;
shading interp
brighten(0.5)
hold on ;
plot(C(:,1),C(:,2),'k-','LineWidth',1.2) ;
xlabel('Longitude (°)') ;
ylabel('Latitude (°)') ;
colorbar ;
axis equal tight; |