Phase synchrosy is my result is right?
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (0)
Ver también
Categorías
Más información sobre EEG/MEG/ECoG en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!