我之前询问过在 .txt 文件中包含矩阵和字符串。我现在需要将单元格附加到它。从我之前的问题:
str = 'This is the matrix: ';
mat1 = [23 46; 56 67];
fName = 'output.txt';
fid = fopen(fName, 'w');
if fid >= 0
fprintf(fid, '%s\n', str);
fclose(fid);
end
dlmwrite(fName, mat1, '-append', 'newline', 'pc', 'delimiter', '\t');
现在我想附加一个字符串:'删除的标识符是',然后是它下面的这个单元格数组:
'ABC' [10011] [2]
'DEF' [10023] [1]
一些相关链接:
http://www.mathworks.com/help/techdoc/ref/fileformats.html,http://www.mathworks.com/support/solutions/en/data/1-1CCMDO/index.html?solution=1- _ _ 1CCMDO