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:
@@ -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');
|
||||
|
||||
@@ -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');
|
||||
|
||||
@@ -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;
|
||||
Reference in New Issue
Block a user