MCMCDiagnosticsACFT Method |
Computes the auto correlations of a series evaluated by a function f.
Namespace: Altaxo.Calc.Statistics.McmcAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static double ACF<T>(
IEnumerable<T> series,
int lag,
Func<T, double> f
)
Parameters
- series IEnumerableT
- The series for computing the auto correlation.
- lag Int32
- The lag in the series
- f FuncT, Double
- The function used to evaluate the series.
Type Parameters
- T
- The element type of the series.
Return Value
DoubleThe auto correlation.
Exceptions
See Also