How can I define the Generalized plant on matlab
5 ビュー (過去 30 日間)
古いコメントを表示
i have this generalized plant matrix, how can i define it in a matlab code to use it in Hinfinty synth. command.
[K,CL,GAM]=hinfsyn(P,nmeas,ncont), Hinfinity Synth.
0 件のコメント
回答 (1 件)
Jeremy Berke
2022 年 7 月 18 日
編集済み: Jeremy Berke
2022 年 7 月 18 日
You can use the ss command
P = ss(A, [B1 B2], [C1; C2], [D11 D12; D21 D22])
Where:
dx = A*x + B1*w +B2*u
z = C1*x + D11*w + D12*u
y = C2*x + D21*w + D22*u
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Robust Control Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!