used plt.subplots everywhere

This commit is contained in:
Siva Prasad Varma
2014-03-14 17:37:14 +05:30
parent c60d15f2f4
commit fb72fb04b2
22 changed files with 350 additions and 405 deletions
+2 -1
View File
@@ -30,5 +30,6 @@ for p in pyramid[1:]:
composite_image[i_row:i_row + n_rows, cols:cols + n_cols] = p
i_row += n_rows
plt.imshow(composite_image)
f, ax = plt.subplots()
ax.imshow(composite_image)
plt.show()