Phase synchrosy is my result is right?
조회 수: 5 (최근 30일)
이전 댓글 표시
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
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 EEG/MEG/ECoG에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!