I have a folder with .mat files, and I want to write a loop for loading these files and doing some actions with data:
1) Choose my folder of data files
2) Perform the following set of operations (pseudocode):
for i = 1:99
load 'Data0i.mat' ('Datai.mat', if i > 9);
data = data * 10;
save data as 'Data0i.mat' to another folder;
end;
What's the MATLAB implementation?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…