EEG data from Emotiv

7 次查看(过去 30 天)
Poorvica Ramanand
Poorvica Ramanand 2022-10-29
回答: Taylor 2023-11-2
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
Taylor 2023-11-2
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)

类别

Help CenterFile Exchange 中查找有关 Biomedical Signal Processing 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by