フィルターのクリア

H infty optimization of transfer function matrix - which method?

1 回表示 (過去 30 日間)
Zia Pandorra
Zia Pandorra 2014 年 3 月 9 日
編集済み: Matt J 2014 年 3 月 9 日
I have a two-dimensional (2 x 2) transfer function matrix like this:
The aim is to solve optimization problem:
I used the code below, but there is no convergence:
s = tf('s');
x = fmincon(@(x) norm([1/(x(1)*s+1), 1/(s+0.5); 3/(s+3), 1/(x(2)*s+2),inf),[1 1],[],[],[],[],[0 0],[2 2])
How can I treat this optimization problem? Which one of optimization methods is useful for this problem?
Any ideas would be appreciated.

回答 (2 件)

Dina Irofti
Dina Irofti 2014 年 3 月 9 日
Try the hinfsyn function.

Matt J
Matt J 2014 年 3 月 9 日
編集済み: Matt J 2014 年 3 月 9 日
You might also be able to do it with FMINSEARCH
x = fminsearch(@(x) norm([1/(x(1)*s+1), 1/(s+0.5); 3/(s+3), 1/(x(2)*s+2),inf),[1 1])
or with FMINSEARCHBND if you really care about those upper and lower bounds on x,y.

カテゴリ

Help Center および File ExchangeNonlinear Optimization についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by