MATLAB CONTROL SYSTEM TOOLBOX 9 Spécifications Page 566

  • Télécharger
  • Ajouter à mon manuel
  • Imprimer
  • Page
    / 591
  • Table des matières
  • MARQUE LIVRES
  • Noté. / 5. Basé sur avis des utilisateurs
Vue de la page 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
Vue de la page 565
1 2 ... 561 562 563 564 565 566 567 568 569 570 571 ... 590 591

Commentaires sur ces manuels

Pas de commentaire