Delay using Cross correlation

조회 수: 3 (최근 30일)
Sravantej
Sravantej 2011년 12월 19일
I want to find the delay between the two signals using xcorr block in the Matlab. When i give two signals to xcorr block, i'm getting the product of the two signals but not the delay.I also tried it by coding [x,lags]=xcorr(x1,x2,'coeff'), but couldn't get the delay.Can anyone please explain how can i get that delay

채택된 답변

Naz
Naz 2011년 12월 19일
The output of xcorr is an array of values of how one array is similar to the other. The maximum value is when two arrays match the most. Find the place (position) of the maximum value in the array (you can look it up from the variable editor, or use built-in functions such as 'find' and 'max', I don't remember exactly). So, if your max value is at position 25, it means that the delay is 25. Also, I am not sure if it matters, but make sure to feed the xcorr function, so the shorter array slides against longer (at least it make sense analytically). Not sure if this will work, but the idea is here:
cor=xcorr(shortArray,longArray);
[~,index]=max(cor);
where 'index' should be the position of the max value as well as the delay index. So, first 25 values must be skipped from the longer array

추가 답변 (1개)

justin  Taylor
justin Taylor 2011년 12월 19일
i don't understand you say.
  댓글 수: 1
Sravantej
Sravantej 2011년 12월 19일
hi justin, i want to find the time delay between the two signals using cross correlation(i.e, xcorr block in matlab).Can you explain how can it be done?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Correlation and Convolution에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by