Load Data in For loop
Show older comments
i have n0,n1,...n9999.mat files
i want to load them in for loop
for r=0:999
aa = sprintf('%d',r);
load('n' aa '.mat', 'AAA') ;
end
but it isnt working what can i do
Answers (1)
RNTL
on 10 Feb 2012
0 votes
you need to concatenate the filename string. try
load(['n' aa '.mat'],'AAA')
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!