Skip to content

Commit 631ab53

Browse files
authored
Add files via upload
1 parent f5b91b0 commit 631ab53

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

codes/chapter2/general2standard.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@
3232
% -- MinMaxLP: the type of optimization
3333

3434
[m, n] = size(A); % size of matrix A
35-
A = [A zeros(m, n)]; % preallocate matrix A
36-
c = [c; zeros(m, 1)]; % preallocate vector c
3735
% if the LP problem is a maximization problem, transform it
3836
% to a minimization problem
3937
if MinMaxLP == 1
@@ -47,12 +45,14 @@
4745
if Eqin(i) == -1
4846
A(i, n + 1) = 1;
4947
Eqin(i) = 0;
48+
c(n + 1) = 0;
5049
n = n + 1;
5150
% transform constraints in the form 'greater than or
5251
% equal to' to equality constraints
5352
elseif Eqin(i) == 1
5453
A(i, n + 1) = -1;
5554
Eqin(i) = 0;
55+
c(n + 1) = 0;
5656
n = n + 1;
5757
end
5858
end

0 commit comments

Comments
 (0)