How to use zpk for symbolic transfer function?

조회 수: 14 (최근 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 CenterFile Exchange에서 Calculus에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by