MATLAB CONTROL SYSTEM TOOLBOX 9 Guia do Utilizador Página 622

  • Descarregar
  • Adicionar aos meus manuais
  • Imprimir
  • Página
    / 649
  • Índice
  • MARCADORES
  • Avaliado. / 5. Com base em avaliações de clientes
Vista de página 621
tfdata
11-232
you can extract the numerator and denominator coefficients by ty ping
[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 t wo 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
Vista de página 621
1 2 ... 617 618 619 620 621 622 623 624 625 626 627 ... 648 649

Comentários a estes Manuais

Sem comentários