-
Notifications
You must be signed in to change notification settings - Fork 1
/
Graph.m
67 lines (57 loc) · 1.12 KB
/
Graph.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
t = Time./10 - Time(1)/10
% Error cometido en el timepo en x e y
figure;
subplot(1,2,1);
plot(t,errX);
title('Error eje X');
xlabel('Tiempo (s)');
ylabel('Píxeles (px)');
subplot(1,2,2);
plot(t,errY);
title('Error eje Y');
xlabel('Tiempo (s)');
ylabel('Píxeles (px)');
% Visualización 3D del error cometido en el tiempo
figure;
subplot(2,2,1);
plot3(t,errX,errY);
title('Error en X');
xlabel('Tiempo (s)');
ylabel('Píxeles x (px)');
grid;
subplot(2,2,3);
plot3(t,errX,errY);
title('Error en Y');
xlabel('Tiempo (s)');
zlabel('Píxeles y (px)');
grid;
subplot(2,2,2);
plot3(t,errX,errY);
title('Error en XY');
xlabel('Tiempo (s)');
ylabel('Píxeles x (px)');
zlabel('Píxeles y (px)');
grid;
subplot(2,2,4);
plot3(t,errX,errY);
title('Error en XY');
xlabel('Tiempo (s)');
ylabel('Píxeles x (px)');
zlabel('Píxeles y (px)');
grid;
figure;
plot(errX,errY);
grid;
title('Error en XY');
xlabel('Píxeles x (px)');
ylabel('Píxeles y (px)');
xlim([-250 250]);
ylim([-250 250]);
absolute = sqrt(errX.^2 + errY.^2);
figure;
plot(t,absolute);
grid;
title('Error en XY');
xlabel('Tiempo (s)')
ylabel('Píxeles absolutos (px)')
ylim([-10 250])