How can I combine two text files having different columns in one file?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Akzeptierte Antwort
Azzi Abdelmalek
am 19 Jun. 2015
a=dlmread('a.txt');
b=dlmread('b.txt');
c=[a,b];
dlmwrite('c.txt',c);
2 Kommentare
Azzi Abdelmalek
am 19 Jun. 2015
Bearbeitet: Azzi Abdelmalek
am 19 Jun. 2015
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)
Siehe auch
Kategorien
Mehr zu Spreadsheets finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!