Normalized cross-correlation function
Show older comments
Hello, i am trying to write a normilized cross-correlation method function , but i can't complete it. Here are the details of the formula :

My code is
x=rand(1,1000);
N=length(x); %// length of signal
n1=128; %// length of window
xf=framing(x,n1,n1/2,rectwin(n1)); %this function frames the signal i will get xf(128,14)
win_num=size(xf,2);
for col=1:win_num
for m=1:n1+1
for n=1:n1-m
ccor(m,col)=sum(xf(n+m,col)*(xf(n,col)))/ sqrt(sum(xf(n)^2)*sum(xf(n+m)^2) );
end
end
end
Note that i want to see the correlation values betwen -1 and 1 like in the figure but instead i get

.
1 Comment
devi sowjanya
on 6 Mar 2021
Can you please provide the framing function code
Accepted Answer
More Answers (2)
Kirby Fears
on 18 Sep 2015
Edited: Kirby Fears
on 18 Sep 2015
0 votes
Hi Manolis,
You are looping n and m by starting at 1, but in the formula you posted the sum starts at 0. You will need to correct your calculations to include the 0 terms in the summation. You should also consider pre-allocating "ccor" to save yourself some computational time.
You may have access to the xcorr function which calculates cross correlations. It has several options to control normalization.
Hope this helps.
2 Comments
Manolis Michailidis
on 18 Sep 2015
Kirby Fears
on 21 Sep 2015
Indeed the loop variables are only used as indices, so you are correct. My mistake. I assumed the loop variables were also used as numeric values in the summand. I'm writing another answer below.
Image Analyst
on 29 Sep 2015
0 votes
Do you have the Image Processing Toolbox? If so, why not just use the built-in function normxcorr2()?
1 Comment
Manolis Michailidis
on 29 Sep 2015
Edited: Manolis Michailidis
on 29 Sep 2015
Categories
Find more on Spectral Estimation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!