Azzera filtri
Azzera filtri

How to save dictionary to a mat file

8 visualizzazioni (ultimi 30 giorni)
D Joseph
D Joseph il 28 Lug 2015
Commentato: D Joseph il 29 Lug 2015
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 Commenti
Walter Roberson
Walter Roberson il 28 Lug 2015
What happened when you tried?
Try
save('Dict.mat', 'D');
D Joseph
D Joseph il 29 Lug 2015
when the dictionary is stored as a mat file, first it cannot be stored. Later when it can be stored , it cannot be loaded into another file. When I'm trying to solve it into another .m file , error is shown . what to do to solve this problem.

Accedi per commentare.

Risposta accettata

Sebastian Castro
Sebastian Castro il 28 Lug 2015
Modificato: Sebastian Castro il 28 Lug 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

Più risposte (0)

Categorie

Scopri di più su Startup and Shutdown in Help Center e File Exchange

Tag

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by