Clear Filters
Clear Filters

EEG data from Emotiv

7 views (last 30 days)
Poorvica Ramanand
Poorvica Ramanand on 29 Oct 2022
Answered: Taylor on 2 Nov 2023
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 ?

Answers (1)

Taylor
Taylor on 2 Nov 2023
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)

Categories

Find more on Biomedical Signal Processing in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!