Matlab code for accessing different folder data

조회 수: 6 (최근 30일)
Arijeet Sinha
Arijeet Sinha 2018년 9월 11일
답변: Jan 2021년 5월 4일
I have 20 excel file of data in 20 different folder. Want to access them all in one matlab code for plot. And can't put all in same folder. Actually all have same name. Need help!!
  댓글 수: 2
Stephen23
Stephen23 2018년 9월 11일
편집: Stephen23 2018년 9월 11일
@Arijeet Sinha: loop over the folders, read the file data. What have you tried so far?
Arijeet Sinha
Arijeet Sinha 2018년 9월 11일
I use loop to read the file data. It's working. But it's not storing the data. When read the next file, previous file data is loss. I want all the 20 excel file from different folder store in same workspace.

댓글을 달려면 로그인하십시오.

답변 (2개)

Stephen23
Stephen23 2018년 9월 11일
편집: Stephen23 2021년 5월 4일
Very similar to the MATLAB documentation shows:
you will want to either use dir or sprint to get the folder names. Something like this should work:
P = 'directory where the 20 subdirectories are';
S = dir(fullfile(P,'*'));
S = S([S.isdir]); % remove files
S = natsortfiles(S); % optional
for k = 1:numel(S)
F = fullfile(P,S(k).name,'filename.txt');
S(k).data = dlmread(F); % or whatever function reads your data.
end
All of your data will be in the structure array S.

Jan
Jan 2021년 5월 4일
Folder = 'C:\Base\Folder\';
FileList = dir(fullfile(Folder, '**', 'YourFile.xlsx'));
Data = cell(1, numel(FileList));
for k = 1:numel(FileList)
File = fullfile(FileList(k).folder, FileList(k).name);
Data{k} = readtable(File); % Or however you import the data
end

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by