필터 지우기
필터 지우기

How do I compute the p-value of the highest r-value from the function [c,lags]=xcorr(A,B)?

조회 수: 17 (최근 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.

답변 (1개)

Anush
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,
  댓글 수: 1
Sammy
Sammy 2023년 6월 16일
Hello, I still couldn't get the max c and r values to match so I can use its corresponding p-value. I think the code could also improve if you place an absolute value of c because there are times when it's value is nearest to negative 1. So...
maxIndex = find(c == max(c));
Thanks for the info by the way. (:

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Correlation and Convolution에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by