Integrating several text files

1 visualización (últimos 30 días)
Morteza Tohidi
Morteza Tohidi el 2 de Dic. de 2020
Comentada: Walter Roberson el 3 de Dic. de 2020
Hello
I have several text files which each of them contains thousands of numbers in 2 columns. I want to integrate them all into one file with the same formate, starting from the first row of the first file and ending with the last row of the last file.

Respuestas (1)

David Hill
David Hill el 3 de Dic. de 2020
Just read them in and concatenate.
b=[];
for n=1:numberoffiles
fileName=sprintf('yourfile%d',n);%assuming file names are numbered
a=readmatrix(fileName);
b=[b;a];%concatenate
end
  5 comentarios
Rik
Rik el 3 de Dic. de 2020
If you have a way to order them, you can read them in that order. Are you storing the file names in a struct or a cell?

Iniciar sesión para comentar.

Categorías

Más información sobre String Parsing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by