互相关的P值

时间:2018-08-23 16:03:39

标签: matlab p-value cross-correlation

我有两个时间序列XaYa,通过这些时间序列,我通过以下方式在Matlab中计算互相关vm2

% after aligning signals, take the part of signal Xa with equal lentht of Ya
if length(Xa) > length(Ya)
    [R2, lags2] = xcorr(Xa(1:length(Ya)),Ya,'coeff');
else
    [R2, lags2] = xcorr(Ya(1:length(Xa)),Xa,'coeff');
end
[vm2, im2] = max(R2); % max. correlation and index

不幸的是,我没有从xcorr方法中得到p值。我可以以某种方式首先删除从xcorr中检索到的滞后,然后使用corrcoef获得与p值的相关性吗?还是我该如何计算这两个信号的相关性的p值?

0 个答案:

没有答案