0
我有一個.tsv文件,我希望在MATLAB中打開,但是我遇到了一些問題。與MATLAB中的.tsv文件混淆(轉換爲矩陣?)
我曾嘗試以下
fid = fopen('data.tsv');
C = textscan(fid, ['%s' repmat('%f',1,8)], 'HeaderLines', 1);
fclose(fid);
,並得到了一點關係都沒有與我的文件中的一些怪異的值。我也試過:
data = dlmread('data.tsv', '\t');
,並得到這個
Error using dlmread (line 139)
Mismatch between file and format string.
Trouble reading number from file (row 1u, field 1u) ==> Participant Assessment
Experiment Block Trial
Answer Reaction Timestamp Free Response\n
有一些方法可以讓我得到它忽略了頭,還是我這樣做完全錯了?
可能重複[如何閱讀文字+數字TSV到MATLAB?(HTTP:/ /stackoverflow.com/questions/14207518/how-to-read-a-textnumeric-tsv-into-matlab) –
就像我說的我試過 – EllesBellz