필터 지우기
필터 지우기

Minimising with multiple constraints and then storing them using a loop

조회 수: 1 (최근 30일)
econgrad
econgrad 2013년 6월 7일
I want to minimize a function with two inequality constraints and different set of parameters.
min -x1*x2*x3
st
a11*x1a12*x2a13*x3 b1;
a21*x1+a22*x2+a23*x3 b2
I have 100 different A=[a11 a12 a13; a21 a22 a23] matrices and 100 different b=[b1;b2] vectors. For each pair of matrix A and vector b, I will have one solution x=(x1 x2 x3).
My goal is to have a single data set with all the solutions of all the inequality constraints. I mean the first row of that x will have the solution for 1st A,b the the 2nd row for next A,b and so on.
Can anyone please help, thank you so much.
  댓글 수: 2
Matt J
Matt J 2013년 6월 8일
편집: Matt J 2013년 6월 8일
My goal is to have a single data set with all the solutions of all the inequality constraints. I mean the first row of that x will have the solution for 1st A,b the the 2nd row for next A,b and so on.
It's usually better to store things column-wise in MATLAB (as in my Answer below) since memory access is faster for columns.

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

답변 (1개)

Matt J
Matt J 2013년 6월 8일
편집: Matt J 2013년 6월 8일
Should be pretty straightforward. The code will look like,
X=zeros(3,100);
for i=1:100
X(:,i)=fmincon(@(x)-prod(x), InitialGuess,A(:,:,i),b(:,i));
end
  댓글 수: 3
econgrad
econgrad 2013년 6월 8일
편집: econgrad 2013년 6월 8일
Matt, why do I have to use prod(x)? Also, is A(:,:,i) pick up all the rows corresponding to i th col? Sorry,in my original question I forgot to post that the A matrix I have looks like this: A=[1 2 3;2 3 4;4 1 2;1 2 4]so the first two rows will be the constraint matrix for the first problem, the next two rows for the second problem and so on. Similarly the b vector and the x0 vector are also arranged that way. I hope I have explained this properly. Thank you so much for your help.
Matt J
Matt J 2013년 6월 9일
편집: Matt J 2013년 6월 9일
why do I have to use prod(x)?
Isn't it appropriate? In the problem you posted, the objective is the product of all the variables (times -1).
Also, is A(:,:,i) pick up all the rows corresponding to i th col?
Yes, but it was just an example. Extract the linear inequality constraint data for the i-th problem in whatever way suits the way you have your data organized.

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

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by