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!