EEG data from Emotiv
显示 更早的评论
Hey ! I have a data table of 14 channels as columns from the 14 channel Emotiv EEG acquisition system. Sampling frequency 128 hz. How do I analyse this data after importing it into the Matlab editor?
I am unsure which parameters or what kind of features I can study from this data. Please do explain the steps.
The table looks like this with 3200 rows in total. How do I plot Voltage vs Time plot ?

回答(1 个)
Taylor
2023-11-2
0 个投票
First you need to construct a vector representing the time values associated with your data:
t = (1:3200)/128;
Then you can plot the voltages against the time:
figure;
plot(t, data)
类别
在 帮助中心 和 File Exchange 中查找有关 EEG/MEG/ECoG 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!