- 积分
- 72
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2017-12-19
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
想要找一个数据里的最小值,结果min函数找出来是缺测值-99900
设置了t@_Fillvalue=-99900 也没有用
这怎么找到除了缺测值以外的最小值呀
这个是脚本
begin
f1=addfile("pot_tem_GI.nc","r")
f2=addfile("trop_wmo_GI.nc","r")
pot_tem=f1->pt
trop=f2->trop
trop@_Fillvalue=-99900
a=min(trop)
b=max(trop)
print(a)
print(b)
end
这是print最小值的结果
Variable: a
Type: double
Total Size: 8 bytes
1 values
Number of Dimensions: 1
Dimensions and sizes: [1]
Coordinates:
(0) -99900
|
|