diff --git a/Show_code.py b/Show_code.py index de07a22d473529b2a733ec247c75b7e9e207cff7..ae63b7c4aa7147e1335c91e9e6d1cf85451f1479 100644 --- a/Show_code.py +++ b/Show_code.py @@ -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