이 질문을 팔로우합니다.
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다.
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다.
Can one solve optimization problem(in Matlab) with conditional constraint that depends on the decision variables?
조회 수: 3 (최근 30일)
이전 댓글 표시
Hello
My original problem is: Find maximal volume ellipsoid(or ellipse if ), it's size is limited by constraints, n can be higher than 3
min
s.t and for where m is the number of nonlinear inequality constraints
My idea is to create a function that checks if the equation(which is the ellipsoid) has any solution with the inequality system, that is, intersects the subspace described by the inequalities. The function returns 0 if no intersection, and 1 if they intersect each other.
Then my problem would become this:
min
s.t
So the real question is: can you solve a problem like this in Matlab? You would set the intersects variable(with the mentioned function) to 0 or 1 for each the solver tries, and accept it if the variable is 0 for the current .
댓글 수: 16
Torsten
2019년 8월 8일
Why don't you just define r1,...,rn, x1,...,xn as decision variables, use "fmincon" and set all your constraints directly in function "nonlcon" of "fmincon" ?
Richárd Tóth
2019년 8월 8일
I've tried it: Problem appears unbounded.
can't be used as decision variables
Torsten
2019년 8월 8일
And why do you think the new formulation will change anything ?
If the inequalities f_i(x1,...,x_n) <= 0 don't bound the x_i, your problem is indeed unbounded.
Richárd Tóth
2019년 8월 8일
One of my constraints was incorrect, but it's still not working. Check my code( so we are looking for an ellipse), the objective function is
function f = objfun(rx)
f = -1*rx(1)*rx(2);
The constraints(they form 2x2 square around the origin)
function [c,ceq] = nonlcon(rx)
n=2;
r=rx(1:n);
x=rx(n+1:end);
K1=x(1)+2;
K2=-x(1)-2;
K3=x(2)+2;
K4=-x(2)-2;
c=[K1,K2,K3,K4];
ceq=x(1)^2/r(1)^2 + x(2)^2/r(2)^2 - 1;
end
And the fmincon call
x0 = [1,1,1,1]; %this already looks wrong, I don't see why should we search for x_1 and x_2
[x,fval] = fmincon(@objfun,x0,[],[],[],[],[],[],@nonlcon);
This should give a solution where and instead it's something like
gets a value of , which is impossible when the ellipse must be in the 2x2 square
Bruno Luong
2019년 8월 8일
편집: Bruno Luong
2019년 8월 8일
You might just make a mistake in your formulation, something such as ri>=0 or xi>=0 as constraints is missing?
Richárd Tóth
2019년 8월 8일
편집: Richárd Tóth
2019년 8월 8일
I think the constraints on the original problem are wrong, the constraint is that the ellipsoid with radiuses r_1,...,r_n has no intersection with any of the inequalities. How you write real constraints of that is what I must figure out.
Bruno Luong
2019년 8월 8일
the constraint is that the ellipsoid with radiuses r_1,...,r_n has no intersection with any of the inequalities.
Sorry I don't understand what you meant by "ellipsoid has no intersection with inequalities".
In my world ellipsoid is a geometry object, inequalities is a logical algebraic expression. I don't know what is the intersection of the two.
Richárd Tóth
2019년 8월 8일
편집: Richárd Tóth
2019년 8월 8일
I should have said: the ellipsoid has no intersection point with any of the subspaces which correspond to each of the inequalities. The ellipse has algebraic form too(it's equation) and the inequalities have geometric meaning too, for example the inequality is a half plane.
Let me illustrate in 2D what I mean:
the ellipse is
consider the following inequality:
if ,then there is no solution to this system:
So the ellipse has no intersection with the half plane .
By increasing and/or the system will have at least one solution sooner or later.
Bruno Luong
2019년 8월 9일
In that case I would say your formulation of nonlinear constraint function as read here
function [c,ceq] = nonlcon(rx)
n=2;
r=rx(1:n);
x=rx(n+1:end);
K1=x(1)+2;
K2=-x(1)-2;
K3=x(2)+2;
K4=-x(2)-2;
c=[K1,K2,K3,K4];
ceq=x(1)^2/r(1)^2 + x(2)^2/r(2)^2 - 1;
end
tell the minimizer will try to find ONE point X on the ellipsoid that satiesfies the 4 inequalities, meaning there is at least one point in the ellipsoid in the intersection of 4 half planes. This is NOT the same as there is no intersection with each of the half plane.
As implemented this constrain cannot force the ellipsoid to be bounded.
The constraint will not limit the side of the ellipsoid. So FMINCON gives you the cost function which goes to minus infinity. FMINCON is correct just your formulation does not reflect the problem you want to solve.
What I suspect is that you want something like this
c(x) <= 0 for ALL points X such that
x(1)^2/r(1)^2 + x(2)^2/r(2)^2 - 1 = 0.
Richárd Tóth
2019년 8월 9일
편집: Richárd Tóth
2019년 8월 9일
You are correct, that describes the constraints exactly. However, I don't think you can write up real constraints from that, or can you? It would become a semi infinite optimization problem, but you don't have the sample set X explicitly, it's not something like X={(0.1,0.1) (0.2,0.2)... } when you could iterate through X and check the c constraints. You simply can't discretize X in this case in my opinion.
Bruno Luong
2019년 8월 9일
No, but you can use the Euler-Lagrange trick I show in this post to reduce the infinite number of points to test to a finite number of points.
You might also use Torsen fmincon within fmincon, but I won't fully trust fmincon (in your case it is OK since all object are semi-convex), and it is quite a hammer tool.
Richárd Tóth
2019년 8월 9일
편집: Richárd Tóth
2019년 8월 9일
Hmm, let's say I manage to create the finite X which stores the points using your recommended method, can I simply use fseminf after that? What about sampling? Do I simply ignore it? Can I do that?
Instead of w1 and w2 I have an X matrix where each row stores a point(x1,...,xn coordinates).
The ( ) constraint would look like ?
(Or maybe I can include the sampling interval into the calculation of the points.)
Bruno Luong
2019년 8월 9일
편집: Bruno Luong
2019년 8월 9일
% Constraints that define the domaine where the ellipsoid must be in
% D = {x : A*x <= b}
% E include in D
A = [ 1 0;
-1 0;
0 1;
0 -1];
b = [2;
2;
2;
2];
r0 = zeros(2,1);
lb = zeros(2,1);
ub = inf(2,1);
areafun = @(r) -prod(r);
nlcon = @(r) testinsideD(r, A, b);
r = fmincon(areafun, r0, [], [], [], [], lb , ub, nlcon)
function [c,ceq] = testinsideD(r, A, b)
nc = size(A,1);
c = zeros(nc,1);
for i=1:nc
% point on ellipsoid that satisfies K-T condition
x0 = A(i,:).';
x = x0 ./ norm(x0./r);;
c(i) = A(i,:)*x - b(i);
end
ceq = [];
end
Edit: use the sign la lambda, code is simpler
Richárd Tóth
2019년 8월 9일
I don't really understand what's happening in the for loop, that is when you check if the ellipse fulfils the current iteration's constraint. As I see you are not generating a set of the ellipse's points to iterate through them and check each constraint, so what's happening?
Bruno Luong
2019년 8월 9일
The loop iterates on plane constraints.
Well no that the whole advantage of such technique, I only need to check those which verifie the KT condition and there is only one of them per plane. As I told you the KT condition allows to reduce infinite number of points to finite (here is 1 per plane). No longer need to generate a bunch of points.
If you don't understand you need to read careful about theory of about KT condition.
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with Optimization Toolbox에 대해 자세히 알아보기
태그
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!오류 발생
페이지가 변경되었기 때문에 동작을 완료할 수 없습니다. 업데이트된 상태를 보려면 페이지를 다시 불러오십시오.
웹사이트 선택
번역된 콘텐츠를 보고 지역별 이벤트와 혜택을 살펴보려면 웹사이트를 선택하십시오. 현재 계신 지역에 따라 다음 웹사이트를 권장합니다:
또한 다음 목록에서 웹사이트를 선택하실 수도 있습니다.
사이트 성능 최적화 방법
최고의 사이트 성능을 위해 중국 사이트(중국어 또는 영어)를 선택하십시오. 현재 계신 지역에서는 다른 국가의 MathWorks 사이트 방문이 최적화되지 않았습니다.
미주
- América Latina (Español)
- Canada (English)
- United States (English)
유럽
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom(English)
아시아 태평양
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)