How can i extract CSV file to FFT algorithm
4 ビュー (過去 30 日間)
古いコメントを表示
Tsalsabilla Winny Junika
2019 年 1 月 1 日
コメント済み: Tsalsabilla Winny Junika
2019 年 1 月 1 日
Guys, can you help me to find the code to extract CSV file (from Neurosky mindwave) into FFT algorithm?
0 件のコメント
採用された回答
Image Analyst
2019 年 1 月 1 日
You forgot to attach your csvfile, so about all I can say is:
data = csvread(filename);
ft = fft(data);
5 件のコメント
Image Analyst
2019 年 1 月 1 日
I'm not going to watch that whole long video. If you want, you can tell me at what time in the video they're exporting/saving the output that you need to use, and I might take a look at it.
ft is a variable that is the output of the fft() routine. The help for the fft() routine says that it returns "the discrete Fourier transform (DFT) of X using a fast Fourier transform (FFT) algorithm." In my variable, the "f" in "ft" means Fourier, and the "t" in "ft" means transform.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で EEG/MEG/ECoG についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!