How to solve (code) the following optimization problem into matlab optimization toolbox?
显示 更早的评论
I'm very novice in optimization and have a convex optimization shown in the attached photo. Could someone help me in coding this optimization problem into matlab and solve it using the optimization toolbox?

回答(1 个)
Alan Weiss
2014-6-2
1 个投票
Perhaps you could help yourself by looking at an introductory example of constrained optimization. Then look at the documentation on writing objective functions and constraints, if the example isn't detailed enough.
Alan Weiss
MATLAB mathematical toolbox documentation
2 个评论
Hessam
2014-6-2
Alan Weiss
2014-6-3
Initial points are tough. Perhaps you could take a random point within your bounds:
x0 = lb + rand(size(lb)).*(ub - lb);
Good luck,
Alan Weiss
MATLAB mathematical toolbox documentation
类别
在 帮助中心 和 File Exchange 中查找有关 Choose a Solver 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!