Skip to content
Snippets Groups Projects
Commit 262e0015 authored by Pascal Engeler's avatar Pascal Engeler
Browse files

Changed plot scales

parent caa2e6e0
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@ lattice = np.loadtxt('lattice.txt', dtype=float)
#plot row by row
for i in range(len(lattice[:,0])):
plt.plot([lattice[i,0],lattice[i,2]],[lattice[i,1],lattice[i,3]])
plt.ylim([-22000.,47000.])
plt.ylim([0.,25000.])
plt.xlabel('x coordinate [um]')
plt.ylabel('y coordinate [um]')
......
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