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일

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에 대해 자세히 알아보기

질문:

2022년 10월 29일

답변:

2023년 11월 2일

Community Treasure Hunt

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

Start Hunting!

Translated by