Global Optimization toolbox: "Undefined function or variable 'createOptimProblem'"

I am trying to use Global Search to solve my optimization problem. Can anyone please help me with this error? Thanks.
"Undefined function or variable 'createOptimProblem'.
Error in globalsearch (line 9)
problem = createOptimProblem('fmincon','x0',x0,..."
This is my code:
opts = optimoptions(@fmincon,'Algorithm','interior-point');
obj=@obj_fun; % objective function of the problem
cons=@nonlcon; % nonlinear constraints of the problem
lb=[0 0 0 0 0 0];
ub=[300 300 300 300 150 1];
x0=[60 30 0.05 16 50 0.5];
problem = createOptimProblem('fmincon','x0',x0,...
'objective',obj,'lb',lb,'ub',ub,'nonlcon',cons,...
'options',opts);
gs= GlobalSearch;
[x ,fval,eflag,outptg,solutions] = run(gs,problem,10);

 채택된 답변

Nam - do you have the Global Optimization Toolbox? In the Command Window, type
ver
to list your version of MATLAB and all installed toolboxes. Note that the createOptimProblem is mentioned in the R2014a documentation (see http://www.mathworks.com/help/releases/R2015a/gads/release-notes.html) so perhaps it was introduced in this version of the toolbox.

댓글 수: 1

you are right, I do not have the Global Optimization Toolbox. I thought I downloaded the version that has Global Optimization Toolbox. Thanks for the answer

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Surrogate Optimization에 대해 자세히 알아보기

질문:

2015년 11월 24일

댓글:

2015년 11월 24일

Community Treasure Hunt

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

Start Hunting!

Translated by