solving Non Linear optimization problem with fmincon
2 次查看(过去 30 天)
显示 更早的评论
hi,
I am trying to solve the following problem
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 个评论
采纳的回答
Sai Bhargav Avula
2019-10-24
Hi,
Yes, the code correctly implements the optimization function presented.
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Nonlinear Optimization 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!