Maximize expected return with constraints
이전 댓글 표시
Hi guys, I need help for a really easy maximization.
Max E(r)=(mean vector)*(weight vector)'
I want to max the return by changing the weight vector (variable). The mean vector is constant.
The constraints are : (vector of 1's)*(weight vector)' = 1 %weights sum to 1
lb wi >= 0
ub wi =< 1
The solution should give me the Max E(r) and the corresponding (weight vector).
Thank you.
댓글 수: 1
Mikhail
2014년 11월 14일
Isn't that a mathematical probmlem>?
채택된 답변
추가 답변 (4개)
John D'Errico
2014년 11월 14일
You want to maximize a linear objective function of the weights, subject to a linear equality constraint (that the weights sum to 1) as well as lower (0) and upper (1) bound constraints.
This is just a linear programming problem, and a basic, virtually trivial one at that.
help linprog
If you lack the optimization toolbox, then you will find something on the file exchange.
Torsten
2014년 11월 14일
0 개 추천
If the mean vector has the same entries at all positions, then the answer is correct ...
Best wishes
Torsten.
카테고리
도움말 센터 및 File Exchange에서 Surrogate Optimization에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!