Update python

This commit is contained in:
Ceres 2025-11-20 16:09:07 +00:00
parent a07fc681cc
commit 562519383d
Signed by: ceres-sees-all
GPG key ID: 9814758436430045
2 changed files with 43 additions and 22 deletions

View file

@ -39,14 +39,16 @@ for density in densities:
ax=plt.axes()
# ax.set_yscale("log")
ax.plot(time, deviations[0])
ax.plot(time, deviations[1])
ax.plot(time, deviations[2])
ax.plot(time, deviations[3])
ax.plot(time, deviations[4])
ax.plot(time, deviations[5])
ax.plot(time, deviations[6])
ax.plot(time, deviations[7])
ax.plot(time, deviations[8])
ax.plot(time, deviations[0],label="300")
ax.plot(time, deviations[1],label="350")
ax.plot(time, deviations[2],label="400")
ax.plot(time, deviations[3],label="450")
ax.plot(time, deviations[4],label="500")
ax.plot(time, deviations[5],label="550")
ax.plot(time, deviations[6],label="600")
ax.plot(time, deviations[7],label="650")
ax.plot(time, deviations[8],label="700")
ax.legend()
plt.show()