How can ı solve this constraint optimization problem?
이전 댓글 표시
답변 (3개)
Bruno Luong
2020년 8월 1일
Hint: you should find
x=y=1
Star Strider
2020년 8월 1일
1 개 추천
I get the feeling that this is likely homework.
It would likely be easiest to use the fmincon function, although there are several functions that could do what you want. Note that the optimisation functions minimise the function they are given, so to maximise it, calculate the negative of the function you supply to fmincon.
John D'Errico
2020년 8월 1일
0 개 추천
Many things you can do, but since this is your homework, and there are already answrs posted, I'll just suggest a couple of things. Why not plot it? Look at the surface. Look at contours of the function on that domain.
Other things. You could differentiate it. Is there a zero of the gradient vector in that region? Is that at a maximum or minimum?
You could use optimization tools. FMINCON comes to mind. Or GA, or any of a number of tools.
댓글 수: 5
Sinem Senel
2020년 8월 2일
Bruno Luong
2020년 8월 2일
편집: Bruno Luong
2020년 8월 2일
Yes because they are designed to handle all kinds of constraints. You don't need those constraints that your problem doesn' have, you don't have to set them. Usually that just meant to put an empty bracket '[]' in the corresponding input argument.
And I can find an example similar to your problem, right in the doc page of fmincon, after expanding the section "Minimize with Bound Constraints".
Sinem Senel
2020년 8월 2일
Bruno Luong
2020년 8월 2일
편집: Bruno Luong
2020년 8월 2일
x0 must be provided base on what a priori your knowledge of where the soluion would be (yeah you definitvely need to read about optimization tools). In this example I direct to you, they select simply as
0.5*(lb+ub)
which is the middle point of the box, heuristically chosen.
Sinem Senel
2020년 8월 2일
카테고리
도움말 센터 및 File Exchange에서 Choose a Solver에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
