Phase synchrosy is my result is right?

3 views (last 30 days)
Dr.D.K. Ravish
Dr.D.K. Ravish on 11 Nov 2013
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)

Answers (0)

Categories

Find more on Biomedical Signal Processing in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!