Answer
From the help file for ListConvolve
, to find the autocorrelation of a list:
data = Table[Mod[i^2, 17], {i, 100}];
autocorrelation = ListConvolve[data, data, {1, 1}];
ListLinePlot[autocorrelation ]
Answer
From the help file for ListConvolve
, to find the autocorrelation of a list:
data = Table[Mod[i^2, 17], {i, 100}];
autocorrelation = ListConvolve[data, data, {1, 1}];
ListLinePlot[autocorrelation ]
Comments
Post a Comment