- 积分
- 1691
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2016-8-3
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
clear;
predata=ncread('1991pre.nc','tp',[1 1 1],[360 181 306],[1 1 1]);
b=(sum(predata,3))*1000;
figure;
ax = worldmap('World');
setm(ax,'Origin', [0 180 0])
load coast;
plot(long,lat,'-k','LineWidth', 1.8);
plotm(lat,long);
framem on; gridm on; plabel off; mlabel off; axis off tight;
E=contour(flipud(b'));hold on;
colorbar('position',[0.92 0.12 0.02 0.8]);
hold on;
为什么contourf(flipud(b'));加不上等值线,b是360*181的二维数组,这个需要怎么该,请大家帮我看看。
|
|