MATLAB: Needed FRequency analysis of an EEG signal

eeg analysis

Hi everyone.i am poor about matlab. i need to decompose EEG signals to ALpha,beta,gama… by using FFT. İ do not have a EEG database neither i do not know to use to database. please show me a way. thanks

Best Answer

to be more clear
x=load('EEG_data.txt'); y=fft(x); PS=abs(y).^2; N=length(x); fs=1000; freq=(1:N/2)*fs/N; plot(freq,PS)
Related Question