I am working on some .edf files.
I try to extract the frequency distributions from the EEG waves.
The thing is, which i can't be sure if it is a problem or not, the most dominant frequency appears to be 0.39 hz always.
I can remove/change it with bandpass or other filters, but i am not sure if i am missing some important point here.
I used to work on patch-clamp data and this is my first time working with EEG data, just checking the waters for a possible collaboration. I can't be sure if this 0.39 hz is a noise, or something that i do wrong, or is it just how Welch - Fourier works.
I just have the common knowledge that the common low frequency delta waves are 0.5-4 hz and that makes me think. But also, i see on various papers on the internet that the lower-low frequences seems to have a similar peak.
I am sharing single position EEG data from 4 different recordings, although all positions have the similar peak at 0.39 hz. Fs was 200 hz.
Matlab code:
win = hamming(1024);
nfft = 1024;
noverlap = nfft / 2;
[px, f] = pwelch(waveseq, win, noverlap, nfft, Fs);
plot(f, 10 * log10(px))...