How do i solve minimax optimization problem?

1 回表示 (過去 30 日間)
Meyyappan
Meyyappan 2012 年 5 月 16 日
certain examples are given in help. But when i try the same, its showing error. Can anyone, with an example, be able to explain solving Minimax optimization problem.
  4 件のコメント
Sargondjani
Sargondjani 2012 年 5 月 16 日
no you dont have the optimization toolbox
Meyyappan
Meyyappan 2012 年 5 月 16 日
function b = three_var(v)
x = v(1);
y = v(2);
z = v(3);
b = x.^2 + 2.5*sin(y) - z^2*x^2*y^2;
v = [-0.6 -1.2 0.135];
a = fminsearch(@three_var,v)
Error using three_var (line 2)
Not enough input arguments. This was the message that i am getting even if try with fminsearch.. kindly elobrate on fminsearch to solve minnimax.. thanks

サインインしてコメントする。

採用された回答

Sargondjani
Sargondjani 2012 年 5 月 16 日
to solve a minimax program you will have to rely on 'fminsearch', file exchange or write you own optimization routine (this might be less difficult than you think)
  1 件のコメント
Meyyappan
Meyyappan 2012 年 5 月 16 日
Thank you for help.. If u could elobrate on using fminsearch for solving minimax, it will be highly helpful.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSolver Outputs and Iterative Display についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by