1
Fork 0

Add pdf output to r_test and orbitals

This commit is contained in:
Edgar P. Burkhart 2022-04-05 10:17:50 +02:00
parent 07378a3127
commit e5d6f9f711
Signed by: edpibu
GPG Key ID: 9833D3C5A25BD227
2 changed files with 2 additions and 0 deletions

View File

@ -93,5 +93,6 @@ ax2dv.quiver(
) )
ax2dv.grid() ax2dv.grid()
ax2dv.set(aspect="equal") ax2dv.set(aspect="equal")
fig2dv.savefig("out_orbitals.pdf")
plt.show() plt.show()

View File

@ -46,4 +46,5 @@ axr.autoscale(True, "x", tight=True)
axr.set(ylim=(0, 1), ylabel="R", xlabel="f") axr.set(ylim=(0, 1), ylabel="R", xlabel="f")
axr.legend(("No noise", "40% noise"), loc="lower left") axr.legend(("No noise", "40% noise"), loc="lower left")
figr.savefig("out_r_test.pdf")
plt.show() plt.show()