-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
"fft method" for dataset II #63
Comments
Dear @liarosge and @vangelis2015, |
Hello, In general it is difficult to see, by naked eye, the effect of stimulus frequency by adopting this simple approach. Perhaps in some trials and subjects, you can observe it. |
@vangelis2015, Thank you for your response. I will consider the points you mentioned. |
Hi,
I am working with Dataset II, and I want to see "the effct of Stimulus frequency" on "each Trial" using "fft method" in MATLAB. I mean, I know the label of each Trial, so I know the stimulus frequency used, and I expect to see a significant Peak regarding "the effect of Stimulus frequency on the EEG signal of each Trial " on the "frequency plot" (for example: a peak on 10 Hz or 6.66 Hzz or ...); however, I can't see such a peak at all. I am wondering why I can't see such a peak!!!
The code I used to apply fft to signals of each trial is this:
close all;
lbl=sess.trials{1,55}.label; %oz num is 126
sig=sess.trials{1,55}.signal(126,:); %oz num is 126
fs = 250;
x = sig;
nfft = 2^( nextpow2(length(x)) );
df = fs/nfft;
f = 0:df:fs/2;
X = fft(x,nfft);
X = X(1:nfft/2+1);
plot(f,abs(X))
xlim([0 20]);
Thank you in advance for any help.
Best regards
The text was updated successfully, but these errors were encountered: