coder.dictionary.Entry.deleteEntry - Delete Embedded Coder Dictionary entry - MATLAB (original) (raw)
Main Content
Class: coder.dictionary.Entry
Namespace: coder.dictionary
Delete Embedded Coder Dictionary entry
Syntax
deleteEntry(entryObj)
Description
deleteEntry([entryObj](#mw%5F3b11f4dd-4aa4-4534-b081-03b01f53027d))
deletes an Embedded Coder Dictionary definition that the entry entryObj
represents.
Input Arguments
Examples
Open the model RollAxisAutopilot
and represent the Embedded Coder Dictionary by using a coder.Dictionary
object. Use this object to access the Storage Classes section of the dictionary and represent the section by using a coder.dictionary.Section
object.
openExample('RollAxisAutopilot') coderDictionary = coder.dictionary.open('RollAxisAutopilot'); storageClassesSect = getSection(coderDictionary, 'StorageClasses');
Represent the example storage class ParamStruct
by using acoder.dictionary.Entry
object.
entryObj = getEntry(storageClassesSect,'ParamStruct');
Delete the ParamStruct
storage class.
Version History
Introduced in R2019b