reading a very large number of csv files

11 visualizaciones (últimos 30 días)
Amir Ahmadi
Amir Ahmadi el 1 de Abr. de 2019
Comentada: Amir Ahmadi el 2 de Abr. de 2019
Hi Everyone,
I have 100k csv files they are named file-0001, file-0002,...file-9999, file-10000, ... , file-99999, file-100000. I want to read each one at a time, manipulate and store results in matrix for plotting purposes using a single loop. I'm using the code below to make a structure and read them one by one using a loop. Everything is fine until I reach the transition in number of the digits from 4 to 5 and 5 to 6 (i.e. file-9999 to file-10000 and file-99999 to file-100000) at these points MATLAB reads the files improperly and gives me distorted graphs. Would you please help me with an efficient way to acomplish this task?
Thank you
d=dir('file-*.csv');
n=length(d);
for i=1:n
data =csvread(d(i).name, 1, 0);
p = data(:,4); % extract the property of interest and overwrite in each iteration
norms(i) = norm(p); % manipulate and store
end
  1 comentario
per isakson
per isakson el 1 de Abr. de 2019
Editada: per isakson el 1 de Abr. de 2019
Have you checked whether the problem is caused by the data/format of the files in question?

Iniciar sesión para comentar.

Respuesta aceptada

Walter Roberson
Walter Roberson el 1 de Abr. de 2019
N = 100000;
norms = zeros(N,1);
for i = 1 : N
filename = sprintf('file-%04d.csv', i);
data = csvread(filename, 1, 0);
norms(i) = norm( data(:,4) );
end
%04d is a decimal format that always uses at least 4 digits for the integer, using leading 0's if needed. More digits will be output if needed, so it will smoothly go from file-0001 to file-0009 to file-0010, and so on, using leading zeros, and eventually will go from file-9999.csv to file-10000.csv using 5 digits when needed, and eventually file-99999.csv to file-100000.csv

Más respuestas (1)

dpb
dpb el 1 de Abr. de 2019
Try
and see if it will solve your problem.
MORAL: Always ensure you have chosen a wide-enough field for such naming conventions! You could write a script to rename them such that they will sort correctly in ASCII sequence and I'd certainly recommend if your script creates output files that it be able to handle as large of a number as you can possible imagine getting--or create a different naming scheme.

Categorías

Más información sobre Debugging and Analysis 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