- 积分
- 444
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2012-12-10
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
初学matlab,请问一下大家,这样读出来的变量var([1:lon_num],[1:lat_num],[1:time_num]),第二维[1:lat_num]是从南向北排序的还是反过来排的呢?
- lon1=70;%longitude of the west boundry.
- lon2=150;%longitude of the east boundry.
- lat1=0;%latitude of the south boundry.
- lat2=60;%latitude of the north boundry.
- year1=1961;%year begin.
- year2=2014;%year end.
- %-------------------------------
- lonw=lon1/2.5+1;
- lone=lon2/2.5+1;
- lats=(90-lat1)/2.5+1;
- latn=(90-lat2)/2.5+1;
- %--------------------------------
- lon=ncread('E:\Extreme_preci\data\ncep\mon\slp.mon.mean.nc','lon');
- lat=ncread('E:\Extreme_preci\data\ncep\mon\slp.mon.mean.nc','lat');
- time=ncread('E:\Extreme_preci\data\ncep\mon\slp.mon.mean.nc','time');
- a=find(lon>=lon1 & lon<=lon2);
- b=find(lat>=lat1 & lat<=lat2); % a和b作为经度和纬度的指针
- d=find(time>=1411296 & time<=1883904);
- lon_num=length(a);
- lat_num=length(b);
- time_num=length(d);
- var=ncread('E:\Extreme_preci\data\ncep\mon\slp.mon.mean.nc','slp',[a(1) b(1) d(1)],[lon_num lat_num time_num]);
复制代码 |
|