User`s guide

Table Of Contents
2 LTI Models
2-32
where the string PropertyName is ei ther the full pr o pe r ty name, or a ny
abbreviatio n wi th enoug h charact ers to i denti fy the pr opert y uniq uel y. For
example, typing
h = tf(100,[1 5 100],'inputname','voltage',...
'outputn','current',...
'notes','A simple circuit')
get(h,'notes')
produces
ans =
'A simple circuit'
To display all of the properties of an LTI model sys (and their values), use the
syntax
get(sys). In this example,
get(h)
produces
num: {[0 0 100]}
den: {[1 5 100]}
Variable: 's'
Ts: 0
InputDelay: 0
OutputDelay: 0
ioDelayMatrix: 0
InputName: {'voltage'}
OutputName: {'current'}
InputGroup: {0x2 cell}
OutputGroup: {0x2 cell}
Notes: {'A simple circuit'}
UserData: []
Noticethat default(output) values havebeen assignedto any LTI propertiesin
this list that you have not specified.
Finally, you can also access property values using direct structure-like
referencing. This topic is explained in the next section.