Generate factorized transfer function using expression

5 ビュー (過去 30 日間)
Muhammad K. Anwar
Muhammad K. Anwar 2020 年 8 月 25 日
回答済み: Raunak Gupta 2020 年 8 月 29 日
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 = ???

回答 (1 件)

Raunak Gupta
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

カテゴリ

Help Center および File ExchangePole and Zero Locations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by