corrcoef & xcorr
22 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello i've two complex functions ( size 1x1x2501) and i need to do a correlation between these (cross-correlation).
i've tried to use this command:
r=corrcoef(Hmimo_tb(1,:)',Hmimo_tb1(1,:)','coeff');
where Hmimo_tb and Hmimo_tb1 are my two signals in which the only difference is the fact that they have been measured in different positions. The difference betweeen these two signals is max equal to 1.5e-13, so they are only affected by noise.
i obtain as result:
ans =
1.0000 1.0000 + 0.0000i 1.0000 - 0.0000i 1.0000
the function that i'm going to correlate are complex but the 0.0000i leave me some doubts.... Another doubt is the fact that the the signals are not equal in fact as i've told before there is a difference of 1.5e-13 that is not reported on the secondary diagonal why?
what are the difference between corrcoef and xcorr?
0 comentarios
Respuesta aceptada
Wayne King
el 10 de Nov. de 2011
Salvatore, corrcoef() is not the cross correlation sequence. It does not shift one vector with respect to the other.
x = cos(pi/4*n);
y = cos(pi/4*n-(3*pi)/4);
[r,p] = corrcoef(x,y);
But
[c,lags] = xcorr(y,x,'coeff');
[maxcorr,I] = max(c);
lags(I)
You see that if you allow for shifts then y and x are perfectly correlated and that happens at lag 3, which makes perfect sense since the frequency of x and y is pi/4 radians/sample and y is shifted (3*pi)/4 radians.
Now, note for
lags(length(x))
c(length(x))
This is exactly equal to r in [r,p] = corrcoef(x,y);
7 comentarios
Wayne King
el 10 de Nov. de 2011
It can mean a phase shift. It depends on the nature of the signals whether it is more natural to view it as a phase shift or just a delay. If the signals are sine waves, I think it is more natural to think of it as a phase shift. Have you tried to understand my examples??? I've shown you a number of example where you find the delay in by the peak in the cross correlation.
Más respuestas (2)
Walter Roberson
el 10 de Nov. de 2011
0.0000i implies that there is a non-zero complex component which is too small to be represented using your current display format (which is probably "format short f")
6 comentarios
Salvatore Turino
el 11 de Nov. de 2011
1 comentario
Wayne King
el 11 de Nov. de 2011
Salvatore, you keep making this mistake. c(3) is not at lag three. You are forgetting about the negative lags. If you enter lags(3) for the example you have above, you see that c(3) is the value of the cross correlation sequence at lag -98. c(104) is the cross correlation sequece at lag 3. That value is very close to 1.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!