How do I compute the p-value of the highest r-value from the function [c,lags]=xcorr(A,B)?
13 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (1)
Anush
am 15 Jun. 2023
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,
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!