-
Notifications
You must be signed in to change notification settings - Fork 0
/
Interior Method
73 lines (70 loc) · 2.58 KB
/
Interior Method
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
clc;
clear;
% Initialize starting point, function, constraints, weights
syms x y rh rg f g1 g2 g0 F grad_x grad_y
u1 = 1;
u2 = 1;
u3 = 1;
u4 = 1;
% Original function to minimize
f = x^2+y^2-6*x-8*y+10
% First constraint g1 <=0
g1 = 4*x^2+y^2-16
% Second constraint g2 <= 0
g2 = 3*x+5*y-4
% Non-negativity constraints
g3 = -x
g4 = -y
% Unconstrained function f(x) + weights*(-1/constraint)
F = f + (u1)*(-1/g1) + (u2)*(-1/g2) + (u3)*(-1/g3) + (u4)*(-1/g4);
% Set initial guess for the two variables x1 as x and x2 as y
% (within feasible region)
x_val(1) = .5;
y_val(1) = .25;
% Run for 5 iterations (weights become too large)
for j=1:5
% Set weights increasing each iteration
u1 = 10^(j-1)
u2 = 10^(j-1);
u3 = 10^(j-1);
u4 = 10^(j-1);
% Update function with new weights for the penalty terms
F = f + (u1)*(-1/g1) + (u2)*(-1/g2) + (u3)*(-1/g3) + (u4)*(-1/g4);
% Gradient of unconstrained function
grad_x = diff(F,x);
grad_y = diff(F,y);
% Calculate the partial derivatives
f1x = diff(grad_x,x);
f1y = diff(grad_x,y);
f2x = diff(grad_y,x);
f2y = diff(grad_y,y);
partials_initial = [f1x f1y; f2x f2y];
% Run Newton's algorithm min 10 iterations
for k=1:20
% Calculate the function values at the current x1 and x2 values
% Put the two values into a list to be used for matrix multiplication later
f_new = subs(F,[x,y,u1,u2,u3,u4], [x_val(k),y_val(k),u1,u2,u3,u4]);
grad_x_at = subs(grad_x,[x,y],[x_val(k), y_val(k)]);
grad_y_at = subs(grad_y,[x,y],[x_val(k), y_val(k)]);
gradient = [grad_x_at,grad_y_at];
% Evaluate the partial derivatives at the current x1 and x2 values
p1x = subs(f1x,[x,y], [x_val(k),y_val(k)]);
p1y = subs(f1y,[x,y], [x_val(k),y_val(k)]);
p2x = subs(f2x,[x,y], [x_val(k),y_val(k)]);
p2y = subs(f2y,[x,y], [x_val(k),y_val(k)]);
% Put the values in a matrix form and find the inverse matrix
partials = [p1x p1y; p2x p2y];
inv_partials = inv(partials);
% Calculate the deltas be multiplying the inverse the function values from the first step in the loop
delta(:,k) = -(inv_partials)*gradient';
% Set the new x1 and x2 values by adding the corresponding delta to the previous x1 and x2 value
x_val(k+1) = x_val(k) + delta(1,k);
y_val(k+1) = y_val(k) + delta(2,k);
end
% Print the final x1 and x2 values
% Print the final value
x1 = x_val(k+1)
x2 = y_val(k+1)
final_value_f1(j) = double(subs(F,[x,y,u1,u2,u3,u4],[x_val(k+1),y_val(k+1),u1,u2,u3,u4]));
end
final_value_f1 = double(subs(F,[x,y,u1,u2,u3,u4],[x_val(k+1),y_val(k+1),u1,u2,u3,u4]))