How to calculate correlation coefficient for two time series signal x(t) and y(t)?

22 vues (au cours des 30 derniers jours)
I have two time series signal in csv file which contain 1 million data point. I want to find out normalized cross correlation coefficient for these two signal . How can i do?

Réponse acceptée

David Hill
David Hill le 24 Août 2019
I believe you just need to read the files into vectors (x and y) and then use the xcorr function.
x = readmatrix('x.csv');
y = readmatrix('y.csv');
[c,lags] = xcorr(x,y);
Now if you want to visualize.
stem(lag,c)

Plus de réponses (1)

Deepika Behmani
Deepika Behmani le 25 Août 2019
Hi David ,
Actually i have tried this method what you suggested but if i want to do normalized correlation then what change i should make?

Community Treasure Hunt

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

Start Hunting!

Translated by