How can I combine two text files having different columns in one file?
3 ビュー (過去 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
0 件のコメント
採用された回答
Azzi Abdelmalek
2015 年 6 月 19 日
a=dlmread('a.txt');
b=dlmread('b.txt');
c=[a,b];
dlmwrite('c.txt',c);
2 件のコメント
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)
参考
カテゴリ
Help Center および File Exchange で Spreadsheets についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!