Skip to content

Instantly share code, notes, and snippets.

@thoolihan
Created February 21, 2017 18:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thoolihan/a01dd7a313f2885fe0ead80ae81da352 to your computer and use it in GitHub Desktop.
Save thoolihan/a01dd7a313f2885fe0ead80ae81da352 to your computer and use it in GitHub Desktop.
Resize Example
import numpy as np
a = np.arange(1000)
a = a.reshape(2, 500)
a = a.resize((2,600), refcheck = False)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment