Matlab sscanf错误

时间:2017-10-04 20:00:51

标签: matlab scanf

以下代码用于读取和标记eeg文件中的数据。 Matlab给出了以下错误:

  

使用sscanf时出错   第一个参数必须是一个字符串。

有没有办法解决这个问题?

%% File Names reading and label generation 

dataFolder= 'SMNI_CMI_TRAIN/';
fileNames = dir([dataFolder 'c*.*']);

lbl = sscanf(cat(1,fileNames.name)','co2%c%d.rd.%d');
status = lbl(1:3:end);
id = lbl(2:3:end);
ids = unique(id);
trial = lbl(3:3:end);

0 个答案:

没有答案