本文介绍了将矩阵写入文件时包含表头的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用dlmwrite
将矩阵从Matlab写入文件:
I write a matrix from Matlab to a file using dlmwrite
:
A = [1,2,3;
4,5,6;
7,8,9];
dlmwrite('output.txt', A, 'delimiter','\t');
这给了我这个output.txt
:
1 2 3
4 5 6
7 8 9
现在,我想添加标题以具有以下结果:
Now I would like to add a header to have the following result:
columnA columnB columnC
1 2 3
4 5 6
7 8 9
我该如何实现?
推荐答案
基于,我找到了以下解决方案:
Building upon A. Visser's answer, I found the following solution:
A = [1,2,3; 4,5,6; 7,8,9];
out = fopen('output.txt','w');
fprintf(out,['ColumnA', '\t', 'ColumnB', '\t', 'ColumnC', '\n']);
fclose(out);
dlmwrite('output.txt', A, 'delimiter','\t','-append');
这篇关于将矩阵写入文件时包含表头的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!