User`s guide

list
infolist Structure Element Description
infolist.typename(2).... ...
infolist.typename(n).... ...
For the eld name, list uses the type n ame to refer to the type
structure information.
The following list p r ov ides import ant information about variable and
eld names:
When a variable name, type name, or function name is not a valid
MATLAB softw are structure eld name,
list replaces or modies
thenamesoitbecomesvalid.
In eld names that contain the invalid dollar character
$, list
replaces the $ with DOLLAR.
Changing the M ATLA B software eld name does not change the
name of the embedded symbol or type.
Examples This rst example shows list used with a variable, providing
information about the variable
varname. Notice that the invalid eld
name
_with_underscore gets changed to Q_with_underscore.Tomake
the invalid name valid,
list inserts the character Q before the name.
varname1 = '_with_underscore'; % invalid fieldname
list(cc,'variable',varname1);
ans =
Q_with_underscore : [varinfo]
ans. Q_with_underscore
ans=
name: '_with_underscore'
isglobal: 0
location: [1x62 char]
size: 1
7-89