Optimization with complicated constraints

5 ビュー (過去 30 日間)
Yisroel
Yisroel 2011 年 12 月 14 日
First off, thank you for you time.
The question is, can Matlab solve optimization problems with complicated constraints in the form:
1/(1-exp(x-y+a)) - 1/(1-exp(y-x+b)) > 1
where a and b are constants.
If so how??
Thanks again!!

採用された回答

Laura Proctor
Laura Proctor 2011 年 12 月 14 日
Yes, MATLAB can solve nonlinear optimization problems. Since it would be a lot to type everything out, this example nonlinear constrained minimization should take you step by step through the process.
The gist of the matter is that you will need to create a file that contains your nonlinear constraints - it will look something like this:
function [cin, ceq] = nlcon(x)
a = 2;
b = 2*a;
cin = 1 - 1/(1-exp(x(1)-x(2)+a)) + 1/(1-exp(x(2)-x(1)+b));
ceq = [];

その他の回答 (2 件)

the cyclist
the cyclist 2011 年 12 月 14 日
I believe that the fmincon() function http://www.mathworks.com/help/toolbox/optim/ug/fmincon.html in the Optimization Toolbox can do this.

Yisroel
Yisroel 2011 年 12 月 15 日
Thanks a ton!
  1 件のコメント
the cyclist
the cyclist 2011 年 12 月 15 日
As a "thanks", you might consider accepting whichever answer you found most helpful. This will help people seeking similar answers.

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

カテゴリ

Help Center および File ExchangeQuadratic Programming and Cone Programming についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by