v = values(d)
v = values(d, 'cell')
| Parameter | Description |
|---|---|
| d | scalar: dictionary object. |
| Parameter | Description |
|---|---|
| v | values. |
v = values(d) retrieves an array containing the values of the specified dictionary, d.
v = values(d, 'cell') optionally returns the values as a cell array.
names = ["Biil" "John" "Yann"];
wheels = [1 2 3];
d = dictionary(wheels, names)
v = values(d)
v = values(d, 'cell')
| Version | Description |
|---|---|
| 1.5.0 | initial version |