How do I rewrite this transfer function into the form shown below

3 次查看(过去 30 天)
I have this transfer function that I need to rewrite as shown below. Is there a function that can do this?

采纳的回答

Sam Chak
Sam Chak 2022-5-26
You can see the following example to learn how to convert a model from one representation to another using the model-creation command for the target model type.
num = [6200 80600 8.06e6 0]; % numerator
den = [1 26 2795 40750 1.8265e6 8.45e6 0]; % denominator
Gp1 = tf(num, den) % Transfer function model
Gp2 = zpk(Gp1) % Zero-pole-gain model
Gp1 =
6200 s^3 + 80600 s^2 + 8.06e06 s
--------------------------------------------------------------
s^6 + 26 s^5 + 2795 s^4 + 40750 s^3 + 1.827e06 s^2 + 8.45e06 s
Continuous-time transfer function.
Gp2 =
6200 s (s^2 + 13s + 1300)
--------------------------------------------
s (s+5) (s^2 + 15s + 1300) (s^2 + 6s + 1300)
Continuous-time zero/pole/gain model.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 PID Controller Tuning 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by