How to save dictionary to a mat file
15 views (last 30 days)
Show older comments
I could not save dictionary to a mat file using Save Dict D,where Dict is the mat file and D is the dictionary
2 Comments
Accepted Answer
Sebastian Castro
on 28 Jul 2015
Edited: Sebastian Castro
on 28 Jul 2015
I am assuming you're using a Simulink Data Dictionary in R2015a (which is when the official API for data dictionaries came out).
What you need to do is extract whichever of the 3 sections (Design Data, Configurations, and/or Other Data) you need. Then, you can use exportToFile as shown below:
>> d = Simulink.data.dictionary.open('dictionaryName.sldd');
>> data = getSection(d,'Design Data')
>> exportToFile(data,'Data.mat')
- Sebastian
0 Comments
More Answers (0)
See Also
Categories
Find more on Manage Design Data 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!