How do I add these files to my loop?

2 views (last 30 days)
Fatemah Ebrahim
Fatemah Ebrahim on 18 Jun 2020
Answered: Image Analyst on 18 Jun 2020
I have multiple files and I only want my Excel files added to the directory.
myDir = uigetdir('path'); %gets directory
myFiles = dir(fullfile(myDir));
M(length(myFiles),s)=zeros; %gets all wav files in struct
for k = 1:length(myFiles)
baseFileName = myFiles(k).name;
fullFileName = fullfile(myDir, baseFileName);
A = readmatrix(fullFileName,'Whitespace',' []');
end

Answers (1)

Image Analyst
Image Analyst on 18 Jun 2020
Try this:
filePattern = fullfile(myDir, '*.xls*');
myFiles = dir(filePattern);

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!