cumcovarp
Syntax
cumcovarp(X,Y)
Please see Cumulative Window Functions for the parameters and windowing logic.
Details
Cumulatively calculates the population covariance of X and Y.
Returns
The result is of type DOUBLE, with the same form as the input parameters.
Examples
x = 7 4 5 8 9
y = 1 7 8 9 0
cumcovarp(x, y);
// output: [0,-4.5,-3.44,-0.75,-3.6]
Related Function: covarp
