how to calculate normalised cross correlation for the signal?

 Accepted Answer

Wayne King
Wayne King on 22 Sep 2011

0 votes

xcorr() with the 'coeff' option.
x = randn(1000,1);
y = randn(1000,1);
[C,lags] = xcorr(x,y,20,'coeff');

More Answers (0)

Categories

Find more on DSP System Toolbox in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!