How to use zpk for symbolic transfer function?
조회 수: 14 (최근 30일)
이전 댓글 표시
Hi How to use the zpk (zero-pole-gain ) command for symbolic transfer function?
Thanks
댓글 수: 1
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 Exchange에서 Calculus에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!