Chi2fit.Statistics.auto

You're seeing just the function auto, go back to Chi2fit.Statistics module for more information.
Link to this function

auto(list, opts \\ [nproc: 1])

View Source

Specs

auto([number()], Keyword.t()) :: [number()]

Calculates the autocorrelation coefficient of a list of observations.

The implementation uses the discrete Fast Fourier Transform to calculate the autocorrelation. For available options see Chi2fit.FFT.fft/2. Returns a list of the autocorrelation coefficients.

Example

iex> auto [1,2,3]
[14.0, 7.999999999999999, 2.999999999999997]