MATLAB CONTROL SYSTEM TOOLBOX 9 Guía de usuario Pagina 76

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 649
  • Tabla de contenidos
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 75
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.
Vista de pagina 75
1 2 ... 71 72 73 74 75 76 77 78 79 80 81 ... 648 649

Comentarios a estos manuales

Sin comentarios