Skip to content
Snippets Groups Projects
Commit 99aa8701 authored by encinass1u's avatar encinass1u
Browse files

Replaced Show_code.py

parent 1cbc1375
No related branches found
No related tags found
1 merge request!2Update README.md
......@@ -9,10 +9,14 @@ with open('Gts_Surface_T.cvs', 'rb') as csv_file:
Plot = plt.imshow(Gts, cmap="bone", norm = None, aspect ='equal' )
plt.show()
#Section to create an array corresponding to a section of the full matrix
L= 15
Sample= Gts[0:L, 0:L]
with open('Gts_Sample.cvs', 'wb') as cvs_file:
pickle.dump(Sample,cvs_file)
#Showing the sample in a plot
Plot_sample = plt.imshow(Sample, cmap="bone", norm = None, aspect ='equal' )
plt.show()
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment