stability test for complex valued transfer function
3 次查看(过去 30 天)
显示 更早的评论
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.
0 个评论
回答(1 个)
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]);
isstable(a)
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Power and Energy Systems 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!