Azzera filtri
Azzera filtri

Matlab Cannot find files or folders matching

4 visualizzazioni (ultimi 30 giorni)
Ahmed Hasan
Ahmed Hasan il 18 Nov 2023
Risposto: Walter Roberson il 18 Nov 2023
Having error at line (Cannot find files or folders matching error). What to do? Thanks. outputFolder = fullfile('Project'); rootFolder = fullfile(outputFolder, 'Brain classification');
  5 Commenti
Ahmed Hasan
Ahmed Hasan il 18 Nov 2023
What are "Project" and "Brain classification"? Files
Dyuman Joshi
Dyuman Joshi il 18 Nov 2023
"What are "Project" and "Brain classification"? Files"
Then you need to include their extensions as well.
What is the objective? What are you trying to do?

Accedi per commentare.

Risposte (1)

Walter Roberson
Walter Roberson il 18 Nov 2023
outputFolder = fullfile('Project');
rootFolder = fullfile(outputFolder, 'Brain classification');
if ~isfolder(outputFolder); mkdir(outputFolder); end
if ~isfolder(rootFolder); mkdir(rootFolder); end

Categorie

Scopri di più su Develop Apps Using App Designer in Help Center e File Exchange

Tag

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by