필터 지우기
필터 지우기

Matlab Cannot find files or folders matching

조회 수: 4 (최근 30일)
Ahmed Hasan
Ahmed Hasan 2023년 11월 18일
답변: Walter Roberson 2023년 11월 18일
Having error at line (Cannot find files or folders matching error). What to do? Thanks. outputFolder = fullfile('Project'); rootFolder = fullfile(outputFolder, 'Brain classification');
  댓글 수: 5
Ahmed Hasan
Ahmed Hasan 2023년 11월 18일
What are "Project" and "Brain classification"? Files
Dyuman Joshi
Dyuman Joshi 2023년 11월 18일
"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?

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

답변 (1개)

Walter Roberson
Walter Roberson 2023년 11월 18일
outputFolder = fullfile('Project');
rootFolder = fullfile(outputFolder, 'Brain classification');
if ~isfolder(outputFolder); mkdir(outputFolder); end
if ~isfolder(rootFolder); mkdir(rootFolder); end

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by