How do I dynamically generate a variable name for individual saving of temporary data into separate MAT files?
6 ビュー (過去 30 日間)
古いコメントを表示
I'm aware of answers like this and this which do not like the idea of dynamic variable names. Perhaps it is too late in the day, but I am trying to save a single field of a structure as a single variable into a single MAT file, largely because of the large amount of data I have. I have tried the below, which mostly works.
filedate = datestr(now,'yyyymmdd');
for ii = 1:size(car, 1)
filename = [filedate '-' car(ii).NumPlate '-All-TT.mat'];
tempTT = car(ii).Timetable;
save(filename, 'tempTT', '-v7.3')
clearvars tempTT filename;
car(ii).Timetable = [];
end
clear ii car filedate;
However, when you then load these files back into MATLAB, the variable is named 'tempTT' which is extra confusing when they're all named the same, as I'm only using the tempTT variable to take the variable out of the car structure. The car structure contains three fields; name, number plate and timetable. This has previously been convenient, but the files with ALL the data are starting to get unwieldy.
I realise there may already be an answer to this, but I cannot see it. Any guidance, please.
0 件のコメント
採用された回答
per isakson
2017 年 11 月 15 日
編集済み: per isakson
2017 年 11 月 15 日
Doc on save says:
Save the fields of structure s1 as individual variables in a file
called newstruct.mat.
save('newstruct.mat','-struct','s1');
Something like ... ; replace
tempTT = car(ii).Timetable;
save(filename, 'tempTT', '-v7.3')
by
sas.( sprintf('Timetable_%02d',ii)) = car(ii).Timetable;
save( filename, '-struct', '-v7.3', 'sas' )
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Data Import and Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!