optimization: constraint (how to state 0<x<1)
이전 댓글 표시
Hi all
I am following http://www.mathworks.com/help/optim/ug/nonlinear-equality-and-inequality-constraints.html
In this problem, we minimize an objective function using fmincon.
In particular, I have a question about the constraint. If I want to state that:
x(1)>0, 0<=x(1)<=1
How do I use specify this in matlab's language?
답변 (1개)
John D'Errico
2014년 8월 25일
These are simple bound constraints. Use the upper and lower bounds that fmincon offers. (READ THE HELP!)
Alternatively, you could just recognize that those constraints are simply
x(1) >= 0
x(1) <= 1
and supply them as linear inequality constraints.
카테고리
도움말 센터 및 File Exchange에서 Simulink Design Optimization에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!