Main Content
insert
Description
d2 = insert(
assigns the d1
,key
,value
)value
to key
in dictionary
,
d2
. If key
already has a corresponding value,
then insert
overwrites the value.
d = insert(d,key,value)
is equivalent to d(key) =
value
.
Examples
Input Arguments
Extended Capabilities
Version History
Introduced in R2023bSee Also
dictionary
| lookup
| remove
| entries
| keys
| values
| isKey
| types
| configureDictionary
| isConfigured
| numEntries