필터 지우기
필터 지우기

How to insert a variable in 'exist' command in matlab?

조회 수: 3 (최근 30일)
Raguram N
Raguram N 2017년 1월 18일
댓글: Steven Lord 2019년 10월 29일
Hi all! I need to check the existence of a set of files with names as mentioned bellow.
data-0.0100-value-0.1000.dat
data-0.0200-value-0.2000.dat
data-0.0300-value-0.3000.dat
data-0.0400-value-0.4000.dat
data-0.0500-value-0.5000.dat
.
.
.
I know I can use 'exist' command to check the existence. But, I try to check using a for loop. In that case, I didn't know how to insert a variable in 'exist' command. I tried the following command:
c= 0.0100;
rr = 0.1000;
if exist('data-%4.4f-value-%4.4f.dat','file',c,rr) == 2
ddd=0;
end
I am getting error "Error using exist;Too many input arguments."
So how can I insert a variables in exist command? thanks in advance.
regards, raman

채택된 답변

Honglei Chen
Honglei Chen 2017년 1월 18일
You can use sprintf
if exist(sprintf('data-%4.4f-value-%4.4f.dat',c,rr),'file') == 2
HTH
  댓글 수: 2
Wael Wanis
Wael Wanis 2019년 10월 28일
what does 'file' stand for?
i understand c & rr are the two variables inside the sprintf but what is file?
Thank you in advance.
Steven Lord
Steven Lord 2019년 10월 29일
It's one of the allowed values for the searchType input argument to the exist function.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Environment and Settings에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by