Vector AutoCorrNormal(TVec Vec, Int32 Lags)
Returns normal auto correlation of the source data.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TVec | source TVec |
| 2 | Lags | Int32 |
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);