How to use zpk for symbolic transfer function?

11 ビュー (過去 30 日間)
waell telmesani
waell telmesani 2018 年 10 月 31 日
編集済み: Walter Roberson 2023 年 12 月 11 日
Hi How to use the zpk (zero-pole-gain ) command for symbolic transfer function?
Thanks
  1 件のコメント
David Chaparro
David Chaparro 2023 年 12 月 11 日
編集済み: Walter Roberson 2023 年 12 月 11 日
This code gives the factors of the denominator.
syms s
Phi=inv(s*eye(FIL)-A); %Matriz de transición
h=C*Phi*B; %Función de transferencia.
H=expand(h)
[N,D] = numden(H)
D_fact = factor(D,s,"FactorMode","real")
[Fil Col] = size(D_fact)
for a = 1:Col
coeffs(D_fact(a),s)
end

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeCalculus についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by