Increasing xcorr() resolution

조회 수: 5 (최근 30일)
Patrick Tamellini
Patrick Tamellini 2011년 4월 27일
Hello,
Is there a wa y to increase the "resolution" of xcorr?
Something like zero padding for the fft()
Thanks,
Patrick

채택된 답변

Daniel Shub
Daniel Shub 2011년 4월 28일
Zero padding will increase the frequency resolution (i.e., reduce the spacing between frequency components), but does not affect the temporal resolution (the time between samples). The resample function increases the temporal resolution, but does not affect the frequency resolution.
a = [0, 0, 1, 0, 1, 0, 0];
b = [0, 0, 1, 1, 1, 0, 0];
upFactor = 10;
aUp = resample(a, upFactor, 1);
bUp = resample(b, upFactor, 1);
[r, lags] = xcorr(a, b, 'coeff');
[rUp, lagsUp] = xcorr(aUp, bUp, 'coeff');
lagsUp = lagsUp/upFactor;
plot(lags, r, 'b', lagsUp, rUp, 'r');
It you do not want a normalized cross-correlation, you will need to scale rUp.

추가 답변 (0개)

카테고리

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