How do I compute the p-value of the highest r-value from the function [c,lags]=xcorr(A,B)?
조회 수: 13 (최근 30일)
이전 댓글 표시
When using the [c,lags]=xcorr(A,B) and [r,p]=corrcoef(A,B), the c and r values are different so I can't use both. What I would like to know is the p-value from the max value of c from xcorr. But I need to use xcorr for its lag and maxlag features. Thanks.
댓글 수: 0
답변 (1개)
Anush
2023년 6월 15일
Hello Sammy,
To compute the p-value of the highest correlation value obtained from the xcorr() function, you can do the following:
[c, lags] = xcorr(A, B);
maxIndex = find(c == max(c));
maxLag = lags(maxIndex);
% Shift one of the signals by the maxLag
shiftedB = circshift(B, maxLag);
[r, p] = corrcoef(A, shiftedB);
This way you obtain the values of lag, maxlag and p-value from the max value of c from xcorr,
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!