Hurwitz stability criterion

版本 1.0.0 (2.1 KB) 作者: aleksa markovic
Gives Hurwitz determinant and logical respond for system stability.
65.0 次下载
更新时间 2018/9/19

查看许可证

Example for "tf" class:
>> s = tf('s');
>> W = 1/(s^4 + 2*s^3 + 3*s^2 + 4*s + 5);
>> [hwz,truefalse] = hurwitz(W,'tf')

Sistem je nestabilan.

hwz =

2 4 0 0
1 3 5 0
0 2 4 0
0 1 3 5

truefalse =

logical

0
Example for "sym" class:
>> syms s
>> W = 1/(s^2 + 2*s + 1);
>> [hwz,truefalse] = hurwitz(W,'sym')

Sistem je stabilan.

hwz =

2 0
1 1

truefalse =

logical

1

引用格式

aleksa markovic (2024). Hurwitz stability criterion (https://www.mathworks.com/matlabcentral/fileexchange/68859-hurwitz-stability-criterion), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2018b
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Pole and Zero Locations 的更多信息

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.0.0