How to solve a dual problem through Matlab

Hi, there,
How can I solve an optimization problem like following:
max_{\rho} min_{u} 1/2 * u^T * K(\rho) * u - f^T * u
the stiffness matrix K is related to the outer maximize problem design variable \rho. the inner minimize problem is the equilibrium with design variable u (displacements). The force vector f is given.
Thanks
Kai

 採用された回答

Matt J
Matt J 2013 年 1 月 12 日
編集済み: Matt J 2013 年 1 月 12 日

0 投票

The inner minimization can be solved analytically
u_min=K(rho)\f
and the problem reduces to
min_{rho} f^T * K(rho)\f
You could try using FMINUNC to solve it, although it's not clear how dense the local minima might be or how you would come up with a good initial guess. The Global Optimization Toolbox might be necessary.

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeProblem-Based Optimization Setup についてさらに検索

タグ

質問済み:

Kai
2013 年 1 月 12 日

Community Treasure Hunt

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

Start Hunting!

Translated by