Page 1 of 1
fft Value from RAW data
Posted: Thu Feb 22, 2018 1:32 pm
by eeg_chk
How do we get Alpha fft from raw data e.g. if I use raw_AF7 to get fft of Alpha_AF7 then same will be used to get fft Beta_AF7. This will give same value for Alpha_AF7, Beta_AF7, Theta_AF7, ..... I wish to calculate fft values of all bands
Re: fft Value from RAW data
Posted: Thu Feb 22, 2018 10:40 pm
by James
Here is the FFT code in many different languages:
https://rosettacode.org/wiki/Fast_Fourier_transform
An FFT requires a set of values, I would recommend using the last 256 RAW EEG values as a minimum. The number of values you use is called the FFT window. It's quite a complex calculation, so I wouldn't recommend it unless you're good at Math and coding!
Re: fft Value from RAW data
Posted: Sun Mar 04, 2018 2:03 am
by eeg_chk
Thanks for the guidance.