i need to plot the EEG in matlab.. i have downloaded the data base which is in .txt format. bt i am unable to plot it.. plz help
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
joyaprita
il 2 Nov 2013
Commentato: joyaprita
il 3 Nov 2013
x=load('F001.txt');
y=fft(x)
PS=abs(y).^2;
N=length(x);
fs=1000;
freq=(1:N/2)*fs/N;
plot(freq,PS)
this is not working,... an error is reported
Error using plot Vectors must be the same lengths.
Error in PLOT (line 7) plot(freq,PS)
0 Commenti
Risposta accettata
Azzi Abdelmalek
il 2 Nov 2013
Look at freq=(1:N/2)*fs/N ,its length is different from PS length
5 Commenti
Azzi Abdelmalek
il 2 Nov 2013
Modificato: Azzi Abdelmalek
il 2 Nov 2013
x=load('F001.txt');
y=fft(x)
PS=abs(y).^2;
N=length(x);
fs=1000;
freq=(0:N-1)*fs/N;
plot(freq,PS)
If you want a symetric plot for frequencies: [-freq,freq]
freq=(0:ceil(N/2)-1)*fs/N;
PS=PS(1:numel(freq));
plot([-freq freq],[fliplr(PS) PS])
Più risposte (0)
Vedere anche
Categorie
Scopri di più su EEG/MEG/ECoG in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!