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.3179.0 (4.8.3179.0)
Syntax public 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
[Missing <typeparam name="T"/> documentation for "M:Altaxo.Calc.Statistics.Mcmc.MCMCDiagnostics.ACF``1(System.Collections.Generic.IEnumerable{``0},System.Int32,System.Func{``0,System.Double})"]
Return Value
DoubleThe auto correlation.
Exceptions See Also