Borrar filtros
Borrar filtros

Loading multiple .dat files

2 visualizaciones (últimos 30 días)
Arijit De
Arijit De el 25 de Mzo. de 2013
Hi,
I have a set of data consisting N no of files where each file is a column of N no of rows; all I need is to load the entire data column by column and construct a NxN square matrix. Each data file is saved as a .dat file and the Nth file has a name: filename_M_fileend.dat where M has N different values.
How I can construct the data matrix?
Thanks. Arijit

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 25 de Mzo. de 2013
Editada: Azzi Abdelmalek el 25 de Mzo. de 2013
data=[];
for k=1:N
data=[data dlmread(sprintf('filename_%d_fileend.dat',k))]
end
  1 comentario
Arijit De
Arijit De el 30 de Mzo. de 2013
Excellent, thanks a lot!!! -Arijit

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by