MtxExpr.AutoCorrNormal Method

function AutoCorrNormal(const Vec: TVec; Lags: Integer): Vector;

Returns normal auto correlation of the source data.

#NameTypeDescription
1VecTVec
2LagsInteger

Returns: Vector

Remarks:

Internally calls Vector.Skewness

Examples
var a,b: Vector;
begin
    a.SetIt(False,[1,2,3,4]);
    b.AutoCorrNormal(a,2);
end;