Borrar filtros
Borrar filtros

Matlab Cannot find files or folders matching

4 visualizaciones (últimos 30 días)
Ahmed Hasan
Ahmed Hasan el 18 de Nov. de 2023
Respondida: Walter Roberson el 18 de Nov. de 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 comentarios
Ahmed Hasan
Ahmed Hasan el 18 de Nov. de 2023
What are "Project" and "Brain classification"? Files
Dyuman Joshi
Dyuman Joshi el 18 de Nov. de 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?

Iniciar sesión para comentar.

Respuestas (1)

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

Categorías

Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by