필터 지우기
필터 지우기

How to save dictionary to a mat file

조회 수: 8 (최근 30일)
D Joseph
D Joseph 2015년 7월 28일
댓글: D Joseph 2015년 7월 29일
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
Walter Roberson
Walter Roberson 2015년 7월 28일
What happened when you tried?
Try
save('Dict.mat', 'D');
D Joseph
D Joseph 2015년 7월 29일
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.

댓글을 달려면 로그인하십시오.

채택된 답변

Sebastian Castro
Sebastian Castro 2015년 7월 28일
편집: Sebastian Castro 2015년 7월 28일
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개)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by