Filter löschen
Filter löschen

Processing many sequential files

1 Ansicht (letzte 30 Tage)
Pete
Pete am 4 Aug. 2013
I am trying to process many many files sequentially. I am using the 'dir' function to get a list of all the files and then using a 'for' loop to process each one. Here's essentially what's happening at the moment. (Note that 'function' is a custom function, and imagine I have 3000 txt files labelled 000000.txt - 002999.txt)
A=dir('*.txt')
j=length(A)
for k=i:j
m=function(A(k).name)
end
So far so good. However I have several 'batches' of 3000 txt files, each labelled the same way. Despite this, I need to 'add' some of the batches together so that they are processed all in the same loop. However I can't just drag the files to the same directory as they will replace the previous ones due to them having the same name. Also, they need to remain in the order they are in, i.e, the first 3000 get processed, followed by the second 3000, all in the same loop. Is there a way around this?
  2 Kommentare
dpb
dpb am 4 Aug. 2013
Post EITHER on forum or newsgroup; not both. Already answered at cs-sm.
Pete
Pete am 4 Aug. 2013
ah my bad, thanks

Melden Sie sich an, um zu kommentieren.

Antworten (1)

dpb
dpb am 4 Aug. 2013
See your identical posting on newsgroup.

Kategorien

Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by