Delete data after processing, using less memory

This commit is contained in:
Quentin Legot 2023-04-07 10:31:29 +02:00
parent ede383eab8
commit b7f69498ee

View File

@ -57,6 +57,8 @@ delays.sort(axis=0)
# Data for plotting # Data for plotting
averages.sort(axis=0) averages.sort(axis=0)
del np_arr
fig, ax = plt.subplots(2, 2) fig, ax = plt.subplots(2, 2)
ax[0, 0].scatter(averages[:, 0], averages[:, 1]) ax[0, 0].scatter(averages[:, 0], averages[:, 1])
ax[0, 0].set(xlabel='number of users', ylabel='Efficacité spectrale', title='Efficacité spectrale') ax[0, 0].set(xlabel='number of users', ylabel='Efficacité spectrale', title='Efficacité spectrale')