我想要变量的空间标准差(让我们说温度)。换句话说,GrADS是否有一个" astd" (与aave相似)命令我可以用吗?
答案 0 :(得分:0)
GRADS中没有这样的命令。但您实际上可以通过两种方式计算标准偏差:
[1]手动计算。例如:
index.php
这里是样本数量。
[2]你可以在GRADS中使用内置函数'stat'。
您可以使用'set stat on'或'set gxout stat'
这些命令将为您提供以下静态:
*compute the mean
x1 = ave(ts1.1,t=1,t=120)
*compute stdev
s1 = sqrt(ave(pow(ts1.1-x1,2),t=1,t=120)*(n1/(n1-1)))
Sigma这里是标准差,Var是方差。
这是你在找什么?