Eyes closed and Open EEG data predict?
6 ビュー (過去 30 日間)
古いコメントを表示
Khan Muhammad Adeel Khan
2020 年 7 月 23 日
コメント済み: Khan Muhammad Adeel Khan
2020 年 7 月 24 日
I am having a resting state EEG data and want to predict the Eyes closed and open conditions. How can I implement code in matlab and any prototype code or function available to figure out this problem. Thanks!
0 件のコメント
採用された回答
Jingwei Too
2020 年 7 月 23 日
You may follow these step
(1) Extract the features from the EEG signals (for both eye closed and open)
(2) You may perform the prediction using the following toolbox by using the feature vector and label
2 件のコメント
その他の回答 (1 件)
Jingwei Too
2020 年 7 月 23 日
Let say you have 10 participants, and 38 channels. You extract one feature (alpha power) from each participant. Then your feature vector will be 10 x 38 (Instances x features). However, if you extract two features from each participant. Then your feature vector will be 10 x 76. Hope this clear.
Then for the label, you have 10 participant, let say first 5 of them are eye closed and last 5 of them are eye opened. Then your label will be [1;1;1;1;1;0;0;0;0;0]. The '1' means eye closed and the '0' means eye opened. The '1' and '0' you can change them with any value, but just make sure they are different since they represent different conditions (eye closed or opened).
参考
カテゴリ
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!