- 积分
- 72
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2017-12-19
- 最后登录
- 1970-1-1
![[双木非林丘咪] 粉丝数:17 微博数:65 新浪微博达人勋](source/plugin/sina_login/img/light.png)
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
问题是给一个变量循环赋值的时候报错,说我要赋值的变量没有被定义。可是我已经用conform_dims创建了数组pot_tem_trop呀,为什么还说这个变量没被定义呢?
报错:fatal:["Execute.c":7773]:pot_tem_trop is undefined, can not subscript an undefined variable
出错程序:
pot_tem_1000=pot_tem(:,{1000},:,:)
pot_tem_trop=conform_dims(dimsizes(pot_tem_1000),0,-1)
do time=0,359
do lat=0,72
do lon=0,143
trop_ll=trop(time,lat,lon)
pot_tem_trop(time,lat,lon):=pot_tem(time,trop_ll,lat,lon) ; 这是出错的那一行
end do
end do
end do
|
|