3d-interface/analysis/matlab/timeAnalyse.m

10 lines
226 B
Matlab

time;
plot(X,Y1);
hold on;
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');