Return MATLAB structure containing property settings of object or array of objects
propList = get(thisObject,prop)
The get
function returns and displays a MATLAB® structure containing the settings for the specified property of this
object. If no property is specified, the settings for all properties are
returned.
The get
function is also vectorized so that it returns an
m
-by-n
cell array of values for an array
of m
objects and an array of n
properties.
| The object for which to get specified property. |
| Name of property (e.g., |
| MATLAB structure listing the properties of this object.
Can also be an |
State A
is represented by the State object
sA
.
The following command lists the properties of state A
:
get(sA)
The following command stores a struct
with the properties of
state A
in the workspace variable
AProperties
:
AProperties = get(sA);