-
Notifications
You must be signed in to change notification settings - Fork 0
/
vi_rls_v6_powell_4.m
442 lines (330 loc) · 11.5 KB
/
vi_rls_v6_powell_4.m
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
close all;
clear all;
clc;
%01-NOviembre Se intenta hacer RLS completamente en línea pero los resultados no son muy buenos
#{
Algoritmo de VI usando aproximadores en el crítico y en el actor para dinámica
parcialmente conocida, (concimiento únicamente de la matriz B).
Asesores: Carlos Brizuelas, Alejandro Marquez.
Tesista: Jesus Miguel Martínez.
Fecha: 18 Julio del 2022
Código referente a iteración de valor online (HDP), usando Mínimos cuadrados recursivos (RLS).
Se considera el uso de Mínimos cuadrados ordinarios (LS) para la generación de theta de predicción (W_ant)
inicial a usar en el algoritmo de RLS.
Se modifica el codigo de vi_rls_v2_powell ya que no se estaba implementando
correctamente el actor.
Para el actor se usará en este código decenso de gradiente.
#}
%Ecuaciones de estados de sistema----------------------------------------------
%Estable
##A = [0.9 0.1;0 0.8];
##B = [0;1];
%Estable
A=[1.8980 -0.9084;1 0];
A2=[1.0970 -0.0084;0.88 0];
B=[1;0];
##%Estable (requiere PE)
##A=[1.1 -0.3; 1 0];
##B=[1; 0];
##%Estable (requiere PE)
##A=[0 1;-0.16 -1];
##B=[0;1];
##%Inestable
##A=[-1 2;2.2 1.7];
##B=[2;1.6];
%Criterio de minimización-------------------------------------------------------
Q = diag ( [ 1 1 ] );
R = 2;
eig(A) %Polos de la matriz A en lazo abierto
gamma = 1;
%Diseño de la ganancia inicial--------------------------------------------------
##[ K0 , P0 ] = dlqr( sqrt(gamma)*A , sqrt(gamma)*B , Q , R )
##
##P_e = P0*0.7
##K = -inv(R+B'*P_e*B)*B'*P_e*A
##K_1 = K(1, 1);
##K_2 = K(1, 2);
%Para el caso de la VI (iteración de valor) puede ser cualquier ganancia.
P_e = [1 0;0 1];
K = -inv(R+B'*P_e*B)*B'*P_e*A %Ganancia de control realimentada
K_1 = -K(1, 1);
K_2 = -K(1, 2);
%Configuración de valores iniciales---------------------------------------------
T = 6000; %Tiempo total T
p = 3; %Número de terminos independientes en nuestra matriz P_e
num_exp = 1; %Números de experimentos
n_ls = 30; %Tamaño de lote para LS (mínimos cuadrados por lotes)
l = 0;
con = 0;
exp = 0;
W = [P_e(1,1);P_e(1,2);P_e(2,2)]; %Pesos de W_j (estimación inicial)
W_ant = [P_e(1,1);P_e(1,2);P_e(2,2)]; %Pesos de W_j+1 (predicción inicial)
##gamma = 1; %Factor de descuento de la ecuación de Bellman
cont_2 = 0;
datos = 0; %Número de iteraciones (muestras x_k) que se cumplen hasta la condición del error
%Datos del crítico--------------------------------------------------------------
f_olvido = 0.99;
a = 1 - f_olvido;
Iden = eye(p);
condicion_e_k = 10e-4; %Condición del error (error entre la estimación y la predicción)
convergencia = 1; %Convergencia = 0 , solo cuando se cumple la condición del error
c_r = 1;
%Datos del actor--------------------------------------------------------------
beta=0.102; %Parámetro de sintonización en el DG
%Señal de exitación-------------------------------------------------------------
[inp,wk]=michirp(0.01,690000,T+1,0.05); %(f. inicial, f. final, muestras, amplitud)
%Condiciones iniciales----------------------------------------------------------
x(:,1)=[0.5;-0.4];
%Inicio del algoritmo-----------------------------------------------------------
while exp<num_exp
datos = 0;
exp = exp+1
convergencia = 1;
dd = 1;
P_ant = P_e;
U_j = K';
%Crítico------------------------------------------------------------------------
for i=1:T
if (convergencia==1)
datos = datos + 1;
if exp >= 1
u=K*x(:,i) + c_r * inp(i,2)*0.102;
end
## if exp > 1
## u=K*x(:,i);
## end
x(:,i+1)=A*x(:,i) + B*u;
r(i,:) = x(:,i)'*Q*x(:,i) + u'*R*u;
phi(:,i) = [x(1,i)^2; 2*x(1,i)*x(2,i) ; x(2,i)^2];
phi1(:,i)=[x(1,i+1)^2; 2*x(1,i+1)*x(2,i+1) ; x(2,i+1)^2];
%W_ant
Y(i,:) = r(i,:) + gamma*W_ant'*phi1(:,i);
if i == n_ls
for k=1:n_ls
phi_(:,k) = phi(:,k);
Y_(k,:) = Y(k,:);
endfor
C_ls = phi_*phi_';
W_ant = inv(C_ls)*phi_*Y_;
theta_wls(:,n_ls) = W_ant;
P_n = phi_*eye(n_ls)*phi_';
end
if i>n_ls
con = con + 1;
k=i;
phi_k = phi(:,k);
r_k = r(k,:);
phi1_k = phi1(:,k);
e_rls(:,k) = -W'*phi_k + r_k + gamma*W_ant'*phi1_k;
e_k = e_rls(:,k);
## if (abs(e_k)<condicion_e_k)
## convergencia = 1;
## datos;
## vec_datos(1,dd) = datos;
## c_r = 0;
## dd = dd+1;
## end
L1(:,k) = 1/f_olvido*P_n*phi_k*inv(1/a + phi_k'*1/f_olvido*P_n*phi_k);
L = L1(:, k);
theta_wls(:, k) = W_ant + L*e_k;
P_n = 1/f_olvido*(Iden - L*phi_k')*P_n;
W = theta_wls(:, k);
##
## U_j = K';
sigma_k = x(:, i); %Sigma (x_k)
dphi(:,:) = [2*x(1,i+1) 0; 2*x(2,i+1) 2*x(1,i+1); 0 2*x(2,i+1)];
diferencia = beta*sigma_k*(2*R*U_j'*sigma_k + gamma*B'*dphi'*W)';
U_j1 = U_j - diferencia;
K_es = U_j1;
U_j = K_es %K_es ya está retroalimentada
%if (abs(e_k)<condicion_e_k)
if mod(i,n_ls)== 0
jj=2
%W_ant = W
error_K(:,exp) = norm(K' - K_es);
K_e = -K_es';
K = -K_e;
%x(:,i)=[0.5;-0.4];
for c = 1:2
K1(1,c+l) = K_e(1,c);
end
end
%-------------------------------------------------------------------------------
%Acomodar los valores de P para las gráficas
for f = 1:2
for c = 1:2
P1(f,c+l) = P_e(f,c);
end
end
l=l+2;
end
%W_ant = W;
endif
endfor
theta_wls
%W_ant = W;
P_e = [theta_wls(1,i) theta_wls(2,i); theta_wls(2,i) theta_wls(3,i)];
error_P(:,exp) = norm(P_e - P_ant);
length(error_P);
%Actor--------------------------------------------------------------------------
%cont_2 = cont_2 + 1;
## U_j = K';
##
## for i=1:datos
## sigma_k = x(:, i); %Sigma (x_k)
## dphi(:,:) = [2*x(1,i+1) 0; 2*x(2,i+1) 2*x(1,i+1); 0 2*x(2,i+1)];
##
##
## diferencia = beta*sigma_k*(2*R*U_j'*sigma_k + gamma*B'*dphi'*W)';
## U_j1 = U_j - diferencia;
## K_es = U_j1;
## U_j = K_es %K_es ya está retroalimentada
##
## endfor
##%-------------------------------------------------------------------------------
## error_K(:,exp) = norm(K' - K_es);
## K_e = -K_es';
## K = -K_e;
##
%Acomodar los valores de K para las gráficas
## for c = 1:2
## K1(1,c+l) = K_e(1,c);
## end
##
## %Acomodar los valores de P para las gráficas
## for f = 1:2
## for c = 1:2
## P1(f,c+l) = P_e(f,c);
## end
## end
##
## l=l+2;
##
##x(:,1)=x(:,T);
endwhile
%final_ruido = min(vec_datos)
K_e
P_e
[ K0 , P0 ] = dlqr( A , B , Q , R )
[ K02 , P02 ] = dlqr( A2 , B , Q , R )
% Las siguientes lineas son para el armado de los vectores K_e y P_e------------
% K_e---------------------------------------------------------------------------
##
##g1 = 1;
##k11 = zeros(1, con + 1);
##k11(:, 1) = K_1;
##for j = 2:con + 1
## k11(1, j) = K1(1, g1);
## g1 = g1 + 2;
##end
##
##g2 = 2;
##k12 = zeros(1, con + 1);
##k12(:, 1) = K_2;
##for j = 2: con + 1;
## k12(1, j) = K1(1, g2);
## g2 = g2 + 2;
##end
##
% P_e---------------------------------------------------------------------------
l1 = 1;
p11 = zeros(1, con + 1);
p11(:,1) = 1; %P_11 ini
for j=2:con + 1;
p11(1, j)= P1(1,l1);
l1=l1+2;
end
l2 =2;
p12=zeros(1, con + 1);
p12(:,1) = 0;
for j=2: con + 1;
p12(1, j)= P1(1,l2);
l2=l2+2;
end
l3 =1;
p21=zeros(1, exp + 1);
p21(:,1) = 0;
for j=2:exp + 1;
p21(1, j)= P1(2,l3);
l3=l3+2;
end
l4 =2;
p22=zeros(1, exp + 1);
p22(:,1) = 1;
for j=2: exp + 1;
p22(1, j)= P1(2,l4);
l4=l4+2;
end
%-------------------------------------------------------------------------------
%Gráficas-----------------------------------------------------------------------
figure(1);
hold on;
plot( (1:datos+1), x(1,1:datos+1),"marker", "v", "markerEdgeColor", "k", ...
"markersize", 4, "linewidth", 2, "color","r");
plot( (1:datos+1), x(2,1:datos+1),"marker", "o", "markerEdgeColor", "k", ...
"markersize", 4, "linewidth", 2, "color","b");
xlabel("Tiempo [k]")
%line([final_ruido final_ruido], [0 1], "linestyle", "--", "linewidth", 2, "color", "black")
xlim ([0, datos])
title({"HDP (VI)"; T})
legend("Estado x_{1}","Estado x_{2}")
grid on
##
##figure(2);
##hold on;
##
##plot( (0:exp), p11,"marker", "o", "markerEdgeColor", "k", ...
## "markersize", 4, "linewidth", 2, "color","r");
##
##plot( (0:exp), p12, "marker", "o", "markerEdgeColor", "k", ...
##"markersize", 4, "linewidth", 2, "color","b");
##
##plot( (0:exp), p21, "marker", "o", "markerEdgeColor", "k", ...
##"markersize", 4, "linewidth", 2, "color","m");
##
##plot( (0:exp), p22, "marker", "o", "markerEdgeColor", "k", ...
##"markersize", 4, "linewidth", 2, "color","g");
##xlabel("Experimento [ j ]")
##title("Convergencia de elementos de la matriz P")
##legend({"p11","p12", "p21", "p22"}, "location", "east")
##
##line([0 exp], [ P0(1,1) P0(1,1)], "linestyle", "--", "color", "r")
##line([0 exp], [P0(1,2) P0(1,2)], "linestyle", "--", "color", "m")
##line([0 exp], [P0(2,2) P0(2,2)], "linestyle", "--", "color", "black")
##xlim ([0,exp])
##grid on
##
##figure(3);
##hold on;
##
##plot( (0:(con)), k11,"marker", "o", "markerEdgeColor", "k", ...
## "markersize", 4, "linewidth", 2, "color","r");
##
##plot( (0:(con)), k12, "marker", "o", "markerEdgeColor", "k", ...
##"markersize", 4, "linewidth", 2, "color","b");
##
##xlabel("Experimento [ j ]")
##title("Convergencia de elementos del vector de control K")
##legend({"k11","k12"}, "location", "east")
##
##line([0 num_exp], [ K0(1,1) K0(1,1) ], "linestyle", "--", "color", "r")
##line([0 num_exp], [K0(1,2) K0(1,2) ], "linestyle", "--", "color", "b")
##xlim ([0,exp])
##grid on
%Normas del error
figure(4);
hold on;
plot( (1:exp), error_P,"marker", "o", "markerEdgeColor", "k", ...
"markersize", 4, "linewidth", 2, "color","m");
xlabel("Experimento [ j ]")
title("Cambio medido entre P_{j-1} y P_{j} durante el proceso de aprendizaje")
legend({"||P_{j-1} - P_{j}||"}, "location", "east")
grid on
figure(5);
hold on;
plot( (1:exp), error_K,"marker", "o", "markerEdgeColor", "red", ...
"markersize", 4, "linewidth", 2, "color","cyan");
xlabel("Experimento [ j ]")
title("Cambio medido entre K_{j-1} y K_{j} durante el proceso de aprendizaje")
legend({"||K_{j-1} - K_{j}||"}, "location", "east")
grid on