Azzera filtri
Azzera filtri

How do I add these files to my loop?

1 visualizzazione (ultimi 30 giorni)
Fatemah Ebrahim
Fatemah Ebrahim il 18 Giu 2020
Risposto: Image Analyst il 18 Giu 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

Risposte (1)

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

Categorie

Scopri di più su Startup and Shutdown in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by