reading a very large number of csv files

11 views (last 30 days)
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 Comment
per isakson
per isakson on 1 Apr 2019
Edited: per isakson on 1 Apr 2019
Have you checked whether the problem is caused by the data/format of the files in question?

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 1 Apr 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

More Answers (1)

dpb
dpb on 1 Apr 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.

Categories

Find more on Debugging and Analysis in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!