Skip to content
Snippets Groups Projects
Commit 5eeca35e authored by Armin Damon Riess's avatar Armin Damon Riess
Browse files

plot energy

parent 10856c13
No related branches found
No related tags found
No related merge requests found
plots/energyplot.png

110 KiB

import numpy as np
import matplotlib.pyplot as plt
data = np.loadtxt('../out/energy.dat')
steps = np.linspace(0, len(data), len(data))
plt.plot(steps, data)
plt.xlabel('Steps')
plt.ylabel('Energy')
plt.savefig('energyplot.png', dpi=300)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment