Routh-Hurwitz Criterion 1

版本 1.0.3 (1.3 KB) 作者: Ahmad Alamaireh
Routh-Hurwitz Criterion
1.0 次下载
更新时间 2024/11/10

查看许可证

There are two special cases in this function:
  • Special Case 1: If an entire row in the Routh array is zero,
  • Special Case 2: If the first element of a row is zero.
MATLAB Command Window
  • Example 1:
coeffs = [1 2 3 6 5 3];
Routh(coeffs)
  • Example 2:
coeffs = [1 7 6 42 8 56];
Routh(coeffs)
  • Example 3:
Gt = zpk([], [-2 -3 -5], 1000);
G = feedback(Gt, 1);
[~, den] = tfdata(G, 'v');
coeffs = round(den);
Routh(coeffs)

引用格式

Ahmad Alamaireh (2024). Routh-Hurwitz Criterion 1 (https://www.mathworks.com/matlabcentral/fileexchange/175353-routh-hurwitz-criterion-1), MATLAB Central File Exchange. 检索时间: .

Shabbeer Hassan (2024). Routh Hurwitz Criteria using user defined Function (https://www.mathworks.com/matlabcentral/fileexchange/19750-routh-hurwitz-criteria-using-user-defined-function), MATLAB Central File Exchange. Retrieved November 9, 2024.

MATLAB 版本兼容性
创建方式 R2024b
兼容任何版本
平台兼容性
Windows macOS Linux
标签 添加标签

Community Treasure Hunt

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

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

A

1.0.2

t

1.0.1

A

1.0.0