Borrar filtros
Borrar filtros

read files in yyyymmddhhmm format

2 visualizaciones (últimos 30 días)
wave_buoys
wave_buoys el 23 de Ag. de 2017
Editada: Stephen23 el 23 de Ag. de 2017
Hi,
I have a bunch of files named in yyyymmddhhmm format. For example: 201111010000.txt 201111010300.txt 201111011000.txt 201111011300.txt ... and so on. I want to loop through each file to get the data. Could someone help?
Thanks
  1 comentario
Stephen23
Stephen23 el 23 de Ag. de 2017
Editada: Stephen23 el 23 de Ag. de 2017
Luckily you used the best date format in the world: one of the main benefits of using ISO 8601 is that the dates automatically sort into chronological order. This makes code much simpler and more efficient.

Iniciar sesión para comentar.

Respuesta aceptada

KSSV
KSSV el 23 de Ag. de 2017
files = dir('*.txt') ; % you are in the folder of text files
N = length(files) ; % total number of files
for i = 1:N % loop for each file
thisfile = files(i).name ;
%%load the data
% Store if you want or calculate
end

Más respuestas (0)

Categorías

Más información sobre Programming 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