Generate factorized transfer function using expression
조회 수: 8(최근 30일)
표시 이전 댓글
Write the TF9 with zeros vector (−2,−2.5,−4.2), poles vector (−1.55,−2.8,−4,−6) and gain 10 using expression.
I really dont know what to write after this
s = zpk ('s')
TF9 = ???
댓글 수: 0
답변(1개)
Raunak Gupta
2020년 8월 29일
Hi,
In zpk function you can substitute the zeros, poles and gain value and it will give the desired expression. You may find below code useful.
sysZeros = [-2,-2.5,-4.2];
sysPoles = [-1.55,-2.8,-4,-6];
gain = 10;
TF9 = zpk(sysZeros,sysPoles,gain);
TF9
댓글 수: 0
참고 항목
범주
Find more on Dynamic System Models in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!