solving the Transfer function
8 ビュー (過去 30 日間)
古いコメントを表示

how to use tf and zpk commands for the above condition. Can anyone help me?
0 件のコメント
採用された回答
Chunru
2021 年 6 月 18 日
% Divide G(s) into two parts (or manually simplify it)
h1 = tf([0.02 1], [0.005 1 0 0 0]);
h2 = tf([0.025 1], [0.001 1]);
g = h1*h2
zpk(g)
doc tf or doc zpk for more details
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Dynamic System Models についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!