fmincon in specific Range
이전 댓글 표시
Hi everybody,
I am again stuck on an optimization problem: I have a function of 6 variables that I want to optimize. I want:
0 < x(1) < 24
0 < x(2) < 24
24 < x(3) < 48
0 < x(4) < 24
48 < x(5) < 72
0 < x(6) < 24
A precision of 0.1 would be more than enough for those 6 parameters! I used:
Results = fmincon(@(x)optforecastSOC72(x,aConst),x0,[],[],[],[],[0,0,24,0,48,0],[24,24,48,24,72,24],[],options)
And I get a result which is NOT the minimum over that interval. How can I force the fmincon to go the entire interval (maybe with bigger sizestep)? I tried to change every options in optimset but it didn't change a think ;(. Thanks for your advices
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Choose a Solver에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!