- 积分
- 2498
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2016-10-23
- 最后登录
- 1970-1-1
|
发表于 2019-1-24 19:07:16
|
显示全部楼层
通过前面的回答大概知道下面这段是对纬向的加权。
- ; =================================================================
- ; weight all observations
- ; =================================================================
- wSLP = SLP ; copy meta data
- wSLP = SLP*conform(SLP, clat, 1)
- wSLP@long_name = "Wgt: "+wSLP@long_name
复制代码 但是对于后面(如下)的这段是标准化吗?为什么是这样????我以为标准化是类似于,减平均再除以方差。
- ; =================================================================
- ; Normalize time series: Sum spatial weights over the area of used
- ; =================================================================
- dimxw = dimsizes( xw )
- mln = dimxw(1)
- sumWgt = mln*sum( clat({lat|latS:latN}) )
- eof_ts = eof_ts/sumWgt
复制代码 对于这列子官网有句这样的话:Finally, the resulting principal component time series is normalizedby the weights used to get the time series of the mean arealamplitudes.
本人英语差,还不是很清楚他是啥意思,有路过的大牛帮忙看一下吧。万分感谢!!
|
|