How to maximize system of linear equations?
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Clarisha Nijman
am 26 Nov. 2018
Kommentiert: Clarisha Nijman
am 1 Dez. 2018
Hello,
Given:
A=[4 3; -1 7; 5 9; 2 4];
x=[x1;x2];
b=[b1; b2; b3; b4];
How can I maximize the linear system of equations: Ax=b?
4 Kommentare
Matt J
am 26 Nov. 2018
Bearbeitet: Matt J
am 26 Nov. 2018
associated with the maximum possible value of b1, b2, b3 and b4
So the idea is to make all b1..b4 as large as possible? Then clearly x=0 and y=Inf are optimal in the example you've shown. They result in b1=b2=b3=b4=Inf.
More generally, though, you cannot simultaneously maximize the right hand side elements b, because they co-depend on the same variables.
Akzeptierte Antwort
Matt J
am 26 Nov. 2018
Bearbeitet: Matt J
am 27 Nov. 2018
6 Kommentare
Matt J
am 30 Nov. 2018
Bearbeitet: Matt J
am 30 Nov. 2018
Runs fine for me. Here is my complete implementation.
C=[ 0.0038 0.0038 0.0038 0.0038
0.0037 0.0037 0.0037 0.0037
0.0036 0.0036 0.0036 0.0036
0.0034 0.0034 0.0035 0.0035
0.0033 0.0033 0.0034 0.0034
0.0032 0.0032 0.0033 0.0033
0.0031 0.0031 0.0032 0.0033
0.0029 0.0029 0.0031 0.0031
0.0028 0.0028 0.0029 0.0028
0.0027 0.0027 0.0024 0.0023];
A1=C(:,2:end);
A2=-C(:,2:end);
Aleq=[A1;A2];
%The less equal RHS
bleq=[C(:,1) -C(:,1)];
Aeq=ones(3,1);
beq=1;
lb=zeros(3,1);
ub=[];
%initial guess
x0=0.1*rand(3,1);
%Defining the objective function
Cs=C(:,2:4);
[OptArgum, optimalVal] = fminimax(@(x) Cs*x,x0,Aleq,bleq(:),Aeq.',beq,lb,ub);
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!