Failure in initial objective function evaluation. FMINCON cannot continue HELP
조회 수: 33 (최근 30일)
이전 댓글 표시
Hi, I have to solve the problem in the image but my fmincon doesn't work. Someone could help me? My code attached. Thanks in advance!
n_asset = size(Assets,2);
Aeq = ones(1,n_asset);
beq = 1;
x0 = mean(Returns);
lb = zeros(1,n_asset);
ub = ones(1,n_asset);
fun = @(x) -(x')*(sqrt(variance))/sqrt((x')*Covariance*(x))
w = -fmincon(fun,x0,[],[],Aeq,beq,lb,ub)

댓글 수: 2
Steve Grikschat
2021년 7월 6일
fmincon calls the objective with x0 before starting and that's where this error occurs.
Try evaluating fun with x0 before calling fmincon. That will give you the specific error.
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Econometrics Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!