eeg data to move a motor

3 ビュー (過去 30 日間)
Gabriel Enzo
Gabriel Enzo 2022 年 6 月 22 日
コメント済み: Gabriel Enzo 2022 年 6 月 24 日
hello, i want to ask about how to move the motor in wheelchair with eeg data that i processed in matlab, please help because it's quite stuck, maybe i will use arduino or matlab directly
  4 件のコメント
Walter Roberson
Walter Roberson 2022 年 6 月 22 日
ANN? As in Artificial Neural Network?
So how is this going to work? You are going to record fixed length multiband segments of the user thinking some particular thought at some point during the segment, and you are going to create a list of what class (forward, back, left, right, stop, other) the recording represents, and you are going to train the neural network against that raw multiband data? With no filtering or feature extraction or pca or attempt to locate the beginning of the action in the signal?
Gabriel Enzo
Gabriel Enzo 2022 年 6 月 23 日
i'm confused in filtering that raw data in the matlab program, and for the class list just to go ahead and stop only

サインインしてコメントする。

採用された回答

Walter Roberson
Walter Roberson 2022 年 6 月 23 日
Create a numeric array in which each row is a different (fixed-length) eeg sample, and in which you have another variable which indicates which class number each row is associated with.
Then at the command line command
nprtool
and use the tool to design an ANN for classification purposes.
  7 件のコメント
Walter Roberson
Walter Roberson 2022 年 6 月 24 日
Your sample code
[vec,ts] = inlet.pull_sample();
% and display it
fprintf('%.2f\t',vec);
fprintf('%.5f\n',ts);
is something that I recognize from some documentation I pointed you to the other day.
Notice that the values obtained are being returned as floating point in both cases -- vec is displayed with two decimal places and ts is displayed with 5 decimal places.
None of what is returned by pull_sample() has character strings.
Either there is a different way to read that kind of data, or else pull_sample is already parsing the character stream to extract values as numeric.
Gabriel Enzo
Gabriel Enzo 2022 年 6 月 24 日
ok, I've found a way to retrieve, thanks in advance for the help

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeEEG/MEG/ECoG についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by