Phase synchrosy is my result is right?

5 ビュー (過去 30 日間)
Dr.D.K. Ravish
Dr.D.K. Ravish 2013 年 11 月 11 日
Dear sir ,
I have computed phase synchrony is the way you suggested . Is the results are correct? Data1=RFmid; Data2=RTmid; % frame length (sec)
% DL=0.5; DH=32;
x=Data1;
y=Data2;
xh = hilbert(x(:));
yh = hilbert(y(:));
phasex = unwrap(angle(xh)+pi);
phasey = unwrap(angle(yh)+pi);
phaseDif = phasey - phasex;
phase_synchrony1=abs(sum(xh .* conj(yh)))/sqrt(sum(abs(xh))* sum(abs(yh)));
u = xh .* conj(yh);
phase_synchrony2=abs(sum(u))/sum(abs(u));
% Statistical features
PsE1 = (phase_synchrony1); PcE1=(phase_synchrony2);
phase_synchrony1= 54.5376 (phase synchrony coefficient) phase_synchrony2= 0.2954 (Phase Locking Value)

回答 (0 件)

カテゴリ

Help Center および File ExchangeEEG/MEG/ECoG についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by