Monster commit

- New analysis functions
- Scene rotation and scale done server side
- PGSQL files are now launchable
- New sql queries
- Removed dependancy from ip
This commit is contained in:
Thomas FORGIONE
2015-10-20 16:30:52 +02:00
parent 58f6caca40
commit e5eacddc58
16 changed files with 782 additions and 43 deletions
+2
View File
@@ -5,3 +5,5 @@ plot(X, Y2, 'red');
hold on;
plot(X, Y3, 'green');
legend('Without recommendation', 'Worst with recommendation', 'Best with recommendation');
xlabel('Group id');
ylabel('Number of interaction received by the server');
+7 -14
View File
@@ -1,16 +1,9 @@
timecoins;
time;
plot(X,Y1);
hold on;
names = who('Y*');
N = size(names, 1);
for i = 1:N,
name = names(i)
name = name{1};
plot(X, eval(name));
pause
clf
end
close all;
plot(X, Y2, 'red');
hold on;
plot(X, Y3, 'green');
legend('Without recommendation', 'Worst with recommendation', 'Best with recommendation');
xlabel('Group id');
ylabel('Time to get the last coin');
+16
View File
@@ -0,0 +1,16 @@
timecoins;
plot(X,Y1);
hold on;
names = who('Y*');
N = size(names, 1);
for i = 1:N,
name = names(i)
name = name{1};
plot(X, eval(name));
pause
clf
end
close all;