CorrelationAuto(Double, Int32, Int32) Method |
Auto-correlation function (ACF) based on FFT for lags between kMin and kMax.
Namespace: Altaxo.Calc.StatisticsAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static double[] Auto(
double[] x,
int kMax,
int kMin = 0
)
Parameters
- x Double
- The data array to calculate auto correlation for.
- kMax Int32
- Max lag to calculate ACF for must be positive and smaller than x.Length.
- kMin Int32 (Optional)
- Min lag to calculate ACF for (0 = no shift with acf=1) must be zero or positive and smaller than x.Length.
Return Value
DoubleAn array with the ACF as a function of the lags k.
See Also