Skip to content
Snippets Groups Projects
Commit fe135b19 authored by Mohcine Chraibi's avatar Mohcine Chraibi
Browse files

fix inversed extend

parent e801a08e
No related branches found
No related tags found
No related merge requests found
...@@ -154,7 +154,7 @@ def plot_sff2(SFF, walls, i): ...@@ -154,7 +154,7 @@ def plot_sff2(SFF, walls, i):
# print (vect) # print (vect)
max_value = np.max(SFF) max_value = np.max(SFF)
min_value = np.min(SFF) min_value = np.min(SFF)
plt.imshow(vect, cmap=cmap, interpolation='nearest', vmin=min_value, vmax=max_value, extent=[0, dim_x, 0, dim_y]) # lanczos nearest plt.imshow(vect, cmap=cmap, interpolation='nearest', vmin=min_value, vmax=max_value, extent=[0, dim_y, 0, dim_x]) # lanczos nearest
plt.colorbar() plt.colorbar()
# print(i) # print(i)
plt.title("%.6d"%i) plt.title("%.6d"%i)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment