You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
398 B
15 lines
398 B
2 years ago
|
AGGREGATION FUNCTION covariances(x, y, w){
|
||
|
static xmeans := 0., ymeans := 0., cnt := 0;
|
||
|
if (cnt < w)
|
||
|
{
|
||
|
xmeans += x;
|
||
|
ymeans += y;
|
||
|
cnt+=1;
|
||
|
}
|
||
|
else {
|
||
|
xmeans += (x - x.vec[cnt - w]) / w;
|
||
|
ymeans += (y - y.vec[cnt - w]) / w;
|
||
|
}
|
||
|
avg (( x.vec(x.len-w, x.len) - xmeans ) * (y.vec(y.len - w, y.len) - ymeans ))
|
||
|
}
|