undefined function or variable 'optimproblem'

3 Ansichten (letzte 30 Tage)
Jidong Wang
Jidong Wang am 15 Jan. 2018
Kommentiert: Mehdi Babaei am 2 Sep. 2019
I wanted to develop and solved an optimization problem with some exogenous variables. I tried to do it in a problem-based way, just as the Mathworks instruction says.
function sol=CS(Sa,Sc,en,e)
%%Define natural variables
mu=0.5;
ld=100;
alf=0.8;
%%Define core variables
prob = optimproblem('ObjectiveSense','maximize');
r= optimvar ('r', 'LowerBound',0, 'UpperBound', 1);
h=r*e;
H=-(1-alf)*ld/(mu*(mu*Sa-(1-alf)*ld))+ld/(mu*(mu*Sc-alf*ld));
l1=(1-alf)*alf+alf^2*h*mu;
l2=alf*h*mu*(mu*Sa-ld)-alf*mu^2*Sc*h+alf*ld+alf*mu*Sc+mu*Sa-ld;
l3=-h*mu^2*(mu*Sa-ld)*Sc-mu*Sc*ld;
ldc=piecewise([H<=0,ld],[H>0,piecewise([h>=0 & h<H,(-l2+sqrt(l2^2-4*l1*l3))/(2*l1)],[h>H,ld])]);
Ya=(1-alf)*ld*es+alf*(h+en)*(ld-ldc);
%%Optimization
prob.Objective=Ya;
sol=solve(prob);
end
But when run, it notified: undefined function or variable 'optimproblem'. Then I typed 'help optimproblem' in the command line, and same message occurred. My version is R2017a, and the Optimization Toolbox is installed. How to fix it?
Thanks!

Akzeptierte Antwort

Matt J
Matt J am 15 Jan. 2018
Bearbeitet: Matt J am 15 Jan. 2018
  3 Kommentare
Walter Roberson
Walter Roberson am 16 Jan. 2018
Good point about the piecewise.
For optimization problems that involve piecewise, often it turns out to be necessary to break the problem up into subsets that are individually not piecewise, optimize over each subset, and then take the best of the solutions.
Jidong Wang
Jidong Wang am 17 Jan. 2018
Thanks for your additional comment. That's helpful!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Mehdi Babaei
Mehdi Babaei am 2 Sep. 2019
optimproblem is not defined in matlab 2017a version. you need to install 2018b version.
  2 Kommentare
Walter Roberson
Walter Roberson am 2 Sep. 2019
R2017b was the version that introduced it.
Mehdi Babaei
Mehdi Babaei am 2 Sep. 2019
Yes, my mistake. 2017b is correct.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Systems of Nonlinear Equations finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by