plot a real EEG data save as csv file

조회 수: 1 (최근 30일)
steve tchidjou tegousson
steve tchidjou tegousson 2022년 12월 7일
답변: Star Strider 2022년 12월 7일
Hi everyone, I am trying to import and plot an EEG data save as csv file on matlab, unfortunately matlab is unable to concatenate 2 variables because they are double and cell. I paste my code below:
clc;
clear;
close all;
T = table2array(readtable('SignalData.csv'));
for i = 1:19
plot(T(:,i));
hold on
end
The data has 287809 rows and 20 colunns.
Thanks.
Steve

답변 (1개)

Star Strider
Star Strider 2022년 12월 7일
Use readtable and then select the appropriate variables rather than using table2array. Without knowing more about the cell array, I have no further usggestions with respect to it.

카테고리

Help CenterFile Exchange에서 EEG/MEG/ECoG에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by