stability test for complex valued transfer function

2 ビュー (過去 30 日間)
Ömer Faruk Arslan
Ömer Faruk Arslan 2022 年 1 月 25 日
回答済み: Mahesh Taparia 2022 年 3 月 3 日
Hello,
How can we test the stability of a "complex coefficient" transfer function? Assume that we have a plant ;
G = (5 +5j)/(s^2+4*s+4)
I see bode() function is able to that, however I m not sure about accuracy & correctness.
Thanks.

回答 (1 件)

Mahesh Taparia
Mahesh Taparia 2022 年 3 月 3 日
Hi
You can use the 'isstable' function to check the stability of a transfer function. For example, in your case, consider the below code:
a=tf([5+5i],[1 4 4]);
Warning: The numerator or denominator of this transfer function has complex-valued coefficients.
isstable(a)
ans = logical
1
For more information, you can refer this documentation. Hope it will help!

カテゴリ

Help Center および File ExchangeDynamic System Models についてさらに検索

製品


リリース

R2015b

Community Treasure Hunt

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

Start Hunting!

Translated by