Adding new fields to a structure using for loop

1 vue (au cours des 30 derniers jours)
Christoph Bauer
Christoph Bauer le 10 Août 2011
Hello everyone,
I have a beginners question on working with structures and for loops: I used the following loop to read csv files into a structure (The ReadResearch function was written by a collegue to read certain csv files from one of our programs):
csvFiles = dir('*.csv');
numfiles = length(csvFiles);
for k= 1:numfiles
data=ReadResearch(csvFiles(k).name);
csvFiles(k).name=data;
end
My problem is that if I rerun the skript to read in more files it does not add these files to the structure but overwrites the existing one. can someone explain me what I have to change?
Thank you,
Christoph
  1 commentaire
Oleg Komarov
Oleg Komarov le 10 Août 2011
Just for future reference (you question is clear): http://www.mathworks.com/matlabcentral/answers/6200-tutorial-how-to-ask-a-question-on-answers-and-get-a-fast-answer

Connectez-vous pour commenter.

Réponse acceptée

Oleg Komarov
Oleg Komarov le 10 Août 2011
If you already have a csvFiles, the first line should be:
csvFiles = [csvFiles dir('*.csv')];
Before that I would suggest to:
% Calculate offset
offs = numel(csvFiles);
% New loop
for k = offs:lenght(csvFiles)
...
end
Otherwise you will be reading all the files again and not just the new ones.
EDIT
Basically the robustified version reads:
if exist('csvFiles','var')
offs = numel(csvFiles);
csvFiles = [csvFiles dir('*.csv')];
else
offs = 0;
end
numfiles = length(csvFiles);
for k = offs+1:numfiles
data = ReadResearch(csvFiles(k).name);
csvFiles(k).name = data;
end

Plus de réponses (1)

Christoph Bauer
Christoph Bauer le 31 Août 2011
thank you that solved it. Kind regards

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by