fixed some stuff as suggested by Simon

This commit is contained in:
2020-03-27 15:38:43 +01:00
parent 798793bdf5
commit 361167f5de
13 changed files with 20 additions and 19 deletions

View File

@@ -16,8 +16,8 @@ h0 = plt.errorbar(results_graph0[:, 0], results_graph0[:, 2], results_graph0[:,
, color="black")
plt.legend(handles=[h0])
plt.xlabel("Number of gates in circuit")
plt.ylabel("Execution time per circuit [s]")
plt.xlabel("Number of Gates in Circuit")
plt.ylabel("Execution Time per Circuit [s]")
plt.title(f"Execution Time for Random Circuits")
plt.savefig("scaling_circuits_50qbit_linear.png", dpi=400)

View File

@@ -21,8 +21,8 @@ h1 = plt.errorbar(results_graph1[:, 0], results_graph1[:, 2], results_graph1[:,
, color="black")
plt.legend(handles=[h0, h1])
plt.xlabel("Number of gates in circuit")
plt.ylabel("Execution time per circuit [s]")
plt.xlabel("Number of Gates in Circuit")
plt.ylabel("Execution Time per Circuit [s]")
plt.title(f"Execution Time for Random Circuits")
plt.savefig("scaling_circuits_linear.png", dpi=400)

View File

@@ -21,8 +21,8 @@ h1 = plt.errorbar(results_graph1[:, 0], results_graph1[:, 2], results_graph1[:,
, color="black")
plt.legend(handles=[h0, h1])
plt.xlabel("Number of gates in circuit")
plt.ylabel("Execution time per circuit [s]")
plt.xlabel("Number of Gates in Circuit")
plt.ylabel("Execution Time per Circuit [s]")
plt.title(f"Execution Time for Random Circuits with Random Measurements")
plt.savefig("scaling_circuits_measurements_linear.png", dpi=400)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 166 KiB

After

Width:  |  Height:  |  Size: 167 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 196 KiB

After

Width:  |  Height:  |  Size: 196 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 227 KiB

After

Width:  |  Height:  |  Size: 227 KiB