How to solve (code) the following optimization problem into matlab optimization toolbox?
Mostra commenti meno recenti
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?

Risposte (1)
Alan Weiss
il 2 Giu 2014
1 voto
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 Commenti
Hessam
il 2 Giu 2014
Alan Weiss
il 3 Giu 2014
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
Categorie
Scopri di più su Choose a Solver in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!