save() and load() Variables in Object of correct Class
5 次查看(过去 30 天)
显示 更早的评论
map = containers.Map();
map('key') = 'value';
strg = 'string';
whos
save('workspace6.mat', 'map', 'strg', '-v7.3');
whos -file workspace6.mat
map2 = load('workspace6.mat', 'map');
strg2 = load('workspace6.mat', 'strg');
whos
gives:
Name Size Bytes Class Attributes
map 1x1 8 containers.Map
strg 1x6 12 char
Name Size Bytes Class Attributes
map - 8 containers.Map
strg 1x6 12 char
Name Size Bytes Class Attributes
map 1x1 8 containers.Map
map2 1x1 184 struct
strg 1x6 12 char
strg2 1x1 188 struct
It seems like it knows what type is in the file. But loaded back into a workspace variable it makes everything a struct. How do I get the data as an object of the correct class (including all sub-objects, if possible)?
I tried with and without '-v7.3' arguemnt.
0 个评论
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Graphics Object Identification 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!