Plotting EEG 36 channel data using code
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have 296500*36 data in matlab for EEG signal. I want to plot it and then do the Power Spectral density using welch for 30 second windows. Sampling frequency is 250 Hz. I would appreciate it if someone can help. Thank you.
0 Kommentare
Antworten (1)
Ajay Pattassery
am 11 Feb. 2020
You can use pwelch for finding the power spectral density of the signal.
For example,
pwelch(x,250*30, [],[],250);
where x is the input signal, 250*30 is the window length and 250 is the sampling frequency.
0 Kommentare
Siehe auch
Kategorien
Mehr zu EEG/MEG/ECoG finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!