Created
November 17, 2017 15:48
-
-
Save kuredev/e5cc451003624dc4490a680de41d2994 to your computer and use it in GitHub Desktop.
Numpyのarangeの小さなメモ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
x = np.arange(-5.0, 5.0, 1.0) | |
print(type(x)) | |
print(x) |
Author
kuredev
commented
Nov 17, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment