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

Delete Show_code.py

parent 73455e7c
No related branches found
No related tags found
No related merge requests found
import pickle
import matplotlib.pyplot as plt
import os
with open('Gts_Surface_T.cvs', 'rb') as csv_file:
Gts = pickle.load(csv_file)
Plot = plt.imshow(Gts, cmap="bone", norm = None, aspect ='equal' )
plt.show()
L= 15
Sample= Gts[0:L, 0:L]
with open('Gts_Sample.cvs', 'wb') as cvs_file:
pickle.dump(Sample,cvs_file)
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