how to find cross correlation of two column vector
3 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Greg Heath
2013-1-7
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
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!