フィルターのクリア

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

3 ビュー (過去 30 日間)
EP
EP 2022 年 5 月 26 日
回答済み: Sam Chak 2022 年 5 月 26 日
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 Center および File ExchangePID Controller Tuning についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by