plot a real EEG data save as csv file
1 回表示 (過去 30 日間)
古いコメントを表示
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
0 件のコメント
回答 (1 件)
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.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で EEG/MEG/ECoG についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!