How to change directory in a for loop

조회 수: 3 (최근 30일)
Md
Md 2014년 3월 27일
편집: per isakson 2014년 3월 28일
Hey Guys, I have a .mat file where I have written all the directories I will use. Lets say one of the directory is 'C:\Users\md\Desktop\A_I_001'. I want to make this directory changed in each iteration. so, the 'j' value will change in each time. How I can do that? Thanks in advance.
load tmp.mat; j='directory'; a = j; A =dir( fullfile(a, '*.png') );

답변 (1개)

per isakson
per isakson 2014년 3월 27일
편집: per isakson 2014년 3월 27일
Load the mat-file content to a variable
S = load('tmp.mat');
Inspect S to learn how the folder names are stored. I can only guess and assumes that in the mat-file each folder name is in one string variable. If so this loop should work
for folder_name = transpose( fieldnames( S ) )
A = dir( fullfile( S.(folder_name{:}), '*.png' );
...
...
end
  댓글 수: 4
Md
Md 2014년 3월 28일
Hi, Thank you for your answer This is the output that I can see
Name Size Bytes Class Attributes
tmp 1x1 300 cell
per isakson
per isakson 2014년 3월 28일
편집: per isakson 2014년 3월 28일
tmp is a scalar, 1x1. What does
tmp{:}
show? And
S = load('tmp.mat')
?
Search a way to display the folder names in the command window and show the commands needed.

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

카테고리

Help CenterFile Exchange에서 File Operations에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

제품

Community Treasure Hunt

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

Start Hunting!

Translated by