Clear Filters
Clear Filters

sprintf changes in each iteration

1 view (last 30 days)
Md
Md on 27 Mar 2014
Edited: Walter Roberson on 29 Apr 2022
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 Comment
ANDREA FORCELLA
ANDREA FORCELLA on 29 Apr 2022
@Md i don't understand your question, it's indecipherable!!!

Sign in to comment.

Accepted Answer

Mischa Kim
Mischa Kim on 27 Mar 2014
Edited: Mischa Kim on 27 Mar 2014
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

More Answers (0)

Categories

Find more on MATLAB in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!