- 积分
- 1145
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2016-4-26
- 最后登录
- 1970-1-1
|
MATLAB
问题截图: |
|
问题概况: |
出来的空间模态分析图如上,如何修改? |
我看过提问的智慧: |
看过 |
自己思考时长(天): |
5 |
系统平台: |
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
附上绘制空间分布图的程序:
for i=1:6
figure(i+12);
m=value(i);
A=x1';
AA=[ ];
for n=1:24:624;
AA=[AA;A((n:n+23),1)'];
end
m_proj('lambert','lon',[100 125],'lat',[2 25]); %投影
hold on
set(gcf,'color',[1 1 1]);
[C,H]=m_contourf(lon,lat,AA',-0.06:0.005:0.06,'linestyle','none');
colorbar; caxis([-0.06 0.06]);
hold on
m_gshhs_h('save','topodata');
m_usercoast('topodata','patch',[0.4 0.4 0.4],'linewidth',1);
hold on
m_grid('box','fancy');
set(gcf,'color',[1 1 1]);
xlabel('longitude','fontsize',[9]);ylabel('latitude','fontsize',[9]);
end
end
|
|