corrcoef & xcorr
显示 更早的评论
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?
采纳的回答
更多回答(2 个)
Walter Roberson
2011-11-10
1 个投票
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 个评论
Salvatore Turino
2011-11-10
Walter Roberson
2011-11-10
format long g
Salvatore Turino
2011-11-10
Salvatore Turino
2011-11-10
Walter Roberson
2011-11-10
With values that small, it could indicate round-off error.
Salvatore Turino
2011-11-10
Salvatore Turino
2011-11-11
1 个评论
Wayne King
2011-11-11
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.
类别
在 帮助中心 和 File Exchange 中查找有关 Correlation and Convolution 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!