solving Non Linear optimization problem with fmincon
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Muhammad Kundi
am 13 Okt. 2019
Beantwortet: Sai Bhargav Avula
am 24 Okt. 2019
hi,
I am trying to solve the following problem
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/242423/image.jpeg)
I have written the following code for this.
objfun = @(x) (x(1)^2 -6*x(1)+x(2)^3 -3*x(2))
A=[1 ,1];
b=[1];
Aeq = [];
beq = [];
lb=[0,0];
ub=[];
x0 = [0.6, 0.4];
[x, fval] = fmincon(objfun, x0, A, b, Aeq, beq, lb, ub)
Is this code correct or are there any mistakes?
Please help.
Thanks
2 Kommentare
Akzeptierte Antwort
Sai Bhargav Avula
am 24 Okt. 2019
Hi,
Yes, the code correctly implements the optimization function presented.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Nonlinear Optimization finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!