removeInterface

Remove named interface from interface dictionary

Description

example

removeInterface(dictionary,name) removes a named interface from the interface dictionary.

Examples

collapse all

Add an interface 'newInterface' to the interface dictionary of the model and then remove it.

addInterface(arch.InterfaceDictionary,'newInterface')
removeInterface(arch.InterfaceDictionary,'newInterface')

Input Arguments

collapse all

Data dictionary attached to architecture model, specified as a systemcomposer.interface.Dictionary object.

Name of new interface, specified as a character vector.

Data Types: char

Introduced in R2019a