Main Content

Simulink.data.dictionary.Section

데이터 사전 섹션 구성

설명

Simulink.data.dictionary.Section 클래스의 객체는 설계 데이터 또는 구성과 같은 데이터 사전의 한 섹션을 나타냅니다. 이 객체를 통해 섹션에 대해 항목의 추가 또는 삭제, 파일에서 데이터 가져오기 등의 작업을 수행할 수 있습니다.

Simulink.data.dictionary.Section 객체를 만들려면 먼저 타깃 데이터 사전을 나타내는 Simulink.data.Dictionary 객체를 만들어야 합니다. Simulink.data.dictionary.Section 객체는 생성된 후 Simulink.data.Dictionary 객체와 독립적으로 존재합니다.

데이터 사전 프로그래밍 인터페이스(Store Data in Dictionary Programmatically 참조)를 사용하여 데이터 사전의 Embedded Coder 섹션에 액세스할 수는 없습니다. 대신 Embedded Coder Dictionary (Embedded Coder) 항목을 참조하십시오.

생성

구문

설명

함수 getSectionSimulink.data.dictionary.Section 객체를 만듭니다.

속성

모두 확장

데이터 사전 섹션의 이름으로, 문자형 벡터로 반환됩니다. 이 속성은 읽기 전용입니다.

객체 함수

addEntryAdd new entry to data dictionary section
assigninAssign value to data dictionary entry
deleteEntryDelete data dictionary entry
evalinEvaluate MATLAB expression in data dictionary section
existCheck existence of data dictionary entry
exportToFileExport data dictionary entries from section to MAT-file or MATLAB file
find Search in data dictionary section
getEntryCreate Simulink.data.dictionary.Entry object to represent data dictionary entry
importFromFileImport variables from MAT-file or MATLAB file to data dictionary section

예제

모두 축소

데이터 사전 myDictionary_ex_API.sldd를 열고 myDictionaryObj라는 이름의 Simulink.data.Dictionary 객체를 사용하여 나타냅니다.

myDictionaryObj = Simulink.data.dictionary.open('myDictionary_ex_API.sldd');

dDataSectObj라는 이름의 Simulink.data.dictionary.Section 객체를 사용하여 데이터 사전 myDictionary_ex_API.sldd의 설계 데이터 섹션을 나타냅니다.

dDataSectObj = getSection(myDictionaryObj,'Design Data')
dDataSectObj = 

  Section with properties:

    Name: 'Design Data'

버전 내역

R2015a에 개발됨