fmincon: objfun and nonlinear constraint subproblem

I am using fmincon to find local minimum and my objfun and equality constraints are of the form
%%%constraints
function [c,ceq] = nonlin_constr(x)
V = subproblem(x)
...
% Ci are functions of V
ceq = [C1 .. Cn]
%%%objective
function Z = objfun(x)
V = subproblem(x)
...
% Z is the function of V
In other words, there is a subproblem for objective and constraint function, that happens to be computed multiple times for the same 'x'. Is there any way to optimize this computation? Thank you in advance for your answers.

回答 (1 件)

Alan Weiss
Alan Weiss 2015 年 11 月 3 日

0 投票

Alan Weiss
MATLAB mathematical toolbox documentation

カテゴリ

ヘルプ センター および File ExchangeGet Started with Optimization Toolbox についてさらに検索

タグ

質問済み:

2015 年 11 月 3 日

回答済み:

2015 年 11 月 3 日

Community Treasure Hunt

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

Start Hunting!

Translated by