AUTH's THMMY "Parallel and distributed systems" course assignments.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

26 linhas
643 B

  1. % Data for new measurements
  2. p_values = [1, 2, 3, 4, 5, 6, 7];
  3. measurements = [
  4. 4761.5, 2957.5, 1940.4, 1985.2, 1364.5, 901.1, 627.55
  5. ];
  6. % Create the figure window
  7. figure('Name', 'Results', 'Position', [100, 100, 1600, 900]);
  8. % Plot: Time vs p
  9. hold on;
  10. plot(p_values, measurements, '-o', 'DisplayName', '2^{28} numbers');
  11. hold off;
  12. xlabel('p');
  13. ylabel('Time (ms)');
  14. title('Time for $2^{28}$ numbers', 'Interpreter', 'latex', 'FontSize', 16);
  15. grid on;
  16. legend('Location', 'northwest');
  17. % Set x-axis to integer values
  18. ticks = min(p_values):max(p_values);
  19. xticks(ticks);
  20. % Save the plot
  21. print(gcf, 'FixSizeMeasurements', '-dpng', '-r300');