Using more than one file directory path in the same script ?

1 Ansicht (letzte 30 Tage)
ahmed
ahmed am 24 Sep. 2013
I have my script like this way
dataDirectory = 'files location ';
allFilesDir = dir(fullfile(dataDirectory , '*.txt'));
allFN = {allFilesDir.name};
result = [];
for n = 1:length(allFN)
measNr(n) = str2double(regexprep(allFN{n},'**.txt',''));
myFN = (fullfile(dataDirectory, allFN{n}));
auxv =try1(myFN);
result(n,:) = mean(auxv.data);
end
then i will plot my data
I want to change the file dataDirectory to another path and perform the same code for these data . How could i do that ?

Antworten (1)

Sean de Wolski
Sean de Wolski am 24 Sep. 2013
What you have there looks like would work if you added another for-loop over data directory.
Thus dataDirectory would be a cell or struct array of paths and you would loop over them.
  1 Kommentar
Jan
Jan am 24 Sep. 2013
"Seems not working" is nor a useful description of the problem. Better post your code and explain which error occurs.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Search Path finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by