MATLAB CONTROL SYSTEM TOOLBOX 9 Spezifikationen Seite 566

  • Herunterladen
  • Zu meinen Handbüchern hinzufügen
  • Drucken
  • Seite
    / 591
  • Inhaltsverzeichnis
  • LESEZEICHEN
  • Bewertet. / 5. Basierend auf Kundenbewertungen
Seitenansicht 565
tfdata
16-226
you can extract the numerator and denominator coefficients by typing
[num,den] = tfdata(h,'v')
num =
0 1 1
den =
1 2 5
This syntax returns two row vectors.
If you turn
h into a MIMO transfer function by typing
H = [h ; tf(1,[1 1])]
the command
[num,den] = tfdata(H)
now returns two cell arrays with the numerator/denominator data for each
SISO entry. Use
celldisp to visualize this data. Type
celldisp(num)
and MATLAB returns the numerator vectors of the entries of H.
num{1} =
0 1 1
num{2} =
0 1
Similarly, for the denominators, type
celldisp(den)
den{1} =
1 2 5
den{2} =
1 1
See Also get Get properties of LTI models
ssdata Quick access to state-space data
Seitenansicht 565
1 2 ... 561 562 563 564 565 566 567 568 569 570 571 ... 590 591

Kommentare zu diesen Handbüchern

Keine Kommentare