calculer ERD/ERS Signal in matlab
Bonjour
Alors voila je suis débutante et je travaille sur les signaux EEG et J’ai 16 canal/16 signal et je veux calculer ERD/ERS /ERP (Event Relate Desynchronization/Synchronization/potentials ) et les plotter sous forme map après et j’ai pas sous comment faire et je veux bien un aide
Code:
1 2 3 4 5 6 7 8
|
tempdata=data(temp_index,k);
[temp_psd,T]=spectrogram(tempdata,kaiser(Fs,2),Fs-1,Fs,Fs);
temp_psd=abs(temp_psd(frq+1,:));
psd_motor=psd_motor+temp_psd;
psd_motor=psd_motor/length(trig_temp);
mi_chan_psd{k,i}=psd_motor; |