Borrar filtros
Borrar filtros

Can anyone provide a code for calculating autocorrelation without autocorr?

23 visualizaciones (últimos 30 días)
Can anyone provide a code for calculating autocorrelation without using autocorr as I do not have the econometrics toolbox?

Respuestas (3)

Walter Roberson
Walter Roberson el 26 de Oct. de 2015

Abdul Wasay
Abdul Wasay el 16 de Feb. de 2020
x=input('Enter the first Sequence : ');
h=input('Enter the second sequence : ');
n=length(x);
m=length(h);
k=n+m-1;
x=[x zeros(1,k-n)]';
h=wrev(h);
h=[h zeros(1,k-m)]';
for i=1:k
c(:,i)=circshift(x,i-1);
end
y=c*h;
disp('Correlation of the sequences')
disp(y');

i Wijayanto
i Wijayanto el 29 de Sept. de 2020

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by