How can I combine two text files having different columns in one file?

9 次查看(过去 30 天)
I have two text files need to be combined to one.
a.txt b.txt
1 2 4
4 3 6
i need like this
c.txt
1 2 4
4 3 6

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2015-6-19
a=dlmread('a.txt');
b=dlmread('b.txt');
c=[a,b];
dlmwrite('c.txt',c);
  2 个评论
Azzi Abdelmalek
Azzi Abdelmalek 2015-6-19
编辑:Azzi Abdelmalek 2015-6-19
a=dlmread('a.txt')
b=dlmread('b.txt')
header=' x y z'
c=[a b]
fid=fopen('file.txt','w')
fprintf(fid,'%s \r\n',header)
myformat='%12.8f %12.8f %12.8f \r\n'
fprintf(fid,myformat,c)
fclose(fid)

请先登录,再进行评论。

更多回答(1 个)

dpb
dpb 2015-6-19
c=[textread('a.txt') textread('b.txt')];
  2 个评论
ND
ND 2015-6-19
编辑:ND 2015-6-19
Dear Azzi,
After combining them I have added headers for them, now I should import these data to excel spreadsheet but it is failed? Many thanks
Stephen23
Stephen23 2015-6-19
编辑:Stephen23 2015-6-19
Similarly to dpb's answer you can also use load:
>> c = [load('a.txt'),load('b.txt')];

请先登录,再进行评论。

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by