MtxExpr.AutoCorrNormal Method

Vector AutoCorrNormal(TVec Vec, Int32 Lags)

Returns normal auto correlation of the source data.

#NameTypeDescription
1VecTVecsource TVec
2LagsInt32

Returns: Vector

Remarks:

Internally calls Dew.Math.Vector.Skewness

Examples
Vector a;
Vector b;
a.SetIt(false,new double[] {1,2,3,4});
b.AutoCorrNormal(a,2);