필터 지우기
필터 지우기

Minimization problem with multiple constraints

조회 수: 2 (최근 30일)
chayma chaabani
chayma chaabani 2017년 3월 2일
편집: Matt J 2017년 3월 3일
I am trying to minimize the following objective function obj(x) = 1 - x*T where x is a 1 dimensional variable and T is a matrix. I have two constraints :
1) x should be positive : x>0
2) The objective function should be positive : 1-x*T>0 so x should be smaller than the minimum of all the matrix inverse values x < min(1/T).
I am not really familiar with Matlab optimization tools and I don't know which Matlab optimization function is adequate for this problem. Would you please give me some recommendations and advice.
Thank you!
  댓글 수: 5
chayma chaabani
chayma chaabani 2017년 3월 3일
In my case, all the values of the return matrix should be minimal.
Matt J
Matt J 2017년 3월 3일
But multiple functions of x cannot necessarily reach there minima simultaneously at the same x. What is it about your "case" that makes this possible?

댓글을 달려면 로그인하십시오.

답변 (1개)

Matt J
Matt J 2017년 3월 2일
See my comments, butI suspect the answer you are looking for is x=min(1/T). This simultaneously minimizes all entries of the matrix-valued function 1-T*x
  댓글 수: 2
chayma chaabani
chayma chaabani 2017년 3월 3일
Unfortunately x=min(1/T) can't be a solution because in this case I will have zero values in the final minimum matrix of the objective obj(x) = 1 - x*T. The objective function should be strictly positive.
Matt J
Matt J 2017년 3월 3일
편집: Matt J 2017년 3월 3일
The objective function should be strictly positive.
Then you have more work to do on the problem formulation, as there is currently nothing in what you've posed that ensures this.
Suppose T=ones(N). Then clearly the solution has to be x=1 and obj(x)=zeros(N). If this is not the solution for such a selection of T, then what is?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile 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!

Translated by