Time-Frequency Analysis of EEG Time Series Part 1: Fourier Analysis of EEG Signal

Sdílet
Vložit
  • čas přidán 23. 07. 2024
  • This is part 5 of a series of videos on Time-Frequency Analysis of EEG Time series. This part is about Fourier analysis of the EEG signal.
  • Věda a technologie

Komentáře • 14

  • @naveenmasood2472
    @naveenmasood2472 Před 4 lety

    thats great.. looking forward to next one 👍

  • @eulenaugen5550
    @eulenaugen5550 Před 4 lety

    Amazing explanation. Thanks a lot!!!

  • @beautybea5543
    @beautybea5543 Před 2 lety +1

    thank you so much..i am using as my preprocessing tech

  • @marmiumiu
    @marmiumiu Před 4 lety

    Thank you so much!

  • @claudiakrogmeier557
    @claudiakrogmeier557 Před 3 lety

    Do you know why certain researchers consider the alpha band frequency differently? I have seen 8-12 Hz, and 8-13 Hz, most commonly. Would this depend on the research question, or is this debatable in the field? Thanks

  • @sohailaidris3971
    @sohailaidris3971 Před rokem

    thank you very much this is so helpful.
    I just wanna ask a question can i use EEGLAB for eeg feature extraction ?

  • @wajihailyas2389
    @wajihailyas2389 Před 3 lety

    hello sir can you please guide me Is FFT good for EEG signal use to detect emotion ?

  • @shayamsuseelan3173
    @shayamsuseelan3173 Před 3 lety +1

    Thank you very much, this has been very helpful. I am using the information from your video to explain FFT in my methods section of my final year research project. Do you happen to have any appropriate references based on your explanation?

    • @prathameshk9011
      @prathameshk9011 Před 3 měsíci

      Hello there.. I needed some Info and help regarding research which includes eeg analysis how can I contact you

  • @WahranRai
    @WahranRai Před 3 lety +5

    0:22 Dont confuse Hans Berger with Ham Burger

    • @01hZ
      @01hZ Před 3 lety +1

      lol!

  • @eleganthomeinteriors1299

    Thanks a lot . But the code for dft you have given in the board isn't working in matlab .Showing error in the inner loop ..

    • @arnodelorme
      @arnodelorme Před rokem

      I might have created a nested loop in the presentation to improve clarity and created a bug as a result. The code below works for me.
      function Xk = dft(x)
      [N,M] = size(x);
      if M ~=1, % makes sure that x is a column vector
      x = x';
      N = M;
      end
      Xk=zeros(N,1);
      n = 0:N-1;
      for k=0:N-1
      Xk(k+1) = exp(-j*2*pi*k*n/N)*x;
      end

    • @eleganthomeinteriors1299
      @eleganthomeinteriors1299 Před rokem

      @@arnodelorme Thank you sir...Now it's working fine...