필터 지우기
필터 지우기

sprintf changes in each iteration

조회 수: 1 (최근 30일)
Md
Md 2014년 3월 27일
편집: Walter Roberson 2022년 4월 29일
Hey guys, I want to change the sprintf in each iteration using a for loop. I want to read 1403 for a mat file and also I want to change the value 1 in each iteration. So, the value of 1 will increase in each iteration. And also in each iteration 1403 value will change and it will come from a mat file.
for iFile=1:10
sprintf( 'A_1_20%4d',(1403-iFile) ) );
end
Thanks in advance.
  댓글 수: 1
ANDREA FORCELLA
ANDREA FORCELLA 2022년 4월 29일
@Md i don't understand your question, it's indecipherable!!!

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

채택된 답변

Mischa Kim
Mischa Kim 2014년 3월 27일
편집: Mischa Kim 2014년 3월 27일
Md, do you mean something like
for iFile=1:10
sprintf('A_%d_20%4d',iFile,1403-iFile+1)
end
To load a .mat file into the workspace simply use the load command, e.g.
load mymat.mat

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by