- 积分
- 576
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2022-1-21
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
在ncl官网下载的程序,修改参数如下:
diri = "/home/u/uwnd."
fili = "850.1979-2020.nc"
fi = addfile(diri+fili, "r")
ua = fi->uwnd ; ua(time) ; read from one grid point
ca = 60.0 ; band start (longer period)
cb = 30.0 ; band end
fca = 1.0/ca ; 'left' frequency
fcb = 1.0/cb ; 'right' frequency
dims = 0 ; 'time' dimension
opt = True ; options to set
opt@return_envelope = True ; time series of filtered and envelope values
ua_bf = bw_bandpass_filter (ua,fca,fcb,opt,dims) ; (ua,fca,fcb,opt,dims)
ua_bf!0 = "a"
copy_VarMata(ua, ua_bf(0,:,:,:,:))
ua_bf@long_name = "Band Pass: "+cb+"-"+ca+" day"
printVarSummary(ua_bf)
将ua维度复制给ua_bf时(倒数第三行)出现错误,想问问应该怎么修改呢
|
-
运行错误提示
|