Skip to content

Instantly share code, notes, and snippets.

@RyotaBannai
Created December 19, 2018 18:11
Show Gist options
  • Select an option

  • Save RyotaBannai/4e318d03fd52d726f63371f17aac7e4a to your computer and use it in GitHub Desktop.

Select an option

Save RyotaBannai/4e318d03fd52d726f63371f17aac7e4a to your computer and use it in GitHub Desktop.
N=5
fig, ax = plt.subplots(1, N, figsize=(5, 2.5),
subplot_kw={'xticks':[], 'yticks':[]},
gridspec_kw=dict(hspace=0.1, wspace=0.1))
for i in range(1, N+1):
ax[i-1].imshow(Vt[i].reshape(62, 47), cmap='binary_r')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment