how to find cross correlation of two column vector
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
hi all, i have a problem to calculating cross correlation of two column vector which contains displacement of nodes at start and at end. i hv to calculate the time lag between them and plot that cross correlation against time..i did t=input(:,1); u1=input(:,2); u2=output(:,2); cc=xcorr(u1,u2); now how would i plot cc verses t, and how i find the time lag. plz help me
0 Commenti
Risposta accettata
Greg Heath
il 7 Gen 2013
The cross-correlation function is not a function of time. It is a function of time difference. In other words LAG. I don't have xcorr. However, the traditional approach has lag = -(Lmin-1):(Lmin-1) where Lmin = min(length(u1),length(u2));
I find the scaling
cc = xcorr(zscore(u1,1),zscore(u2,1))
to be convenient.
Hope this helps.
Thank you for formally accepting my answer.
Greg
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!