We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b3113d commit 701a0c9Copy full SHA for 701a0c9
numpy/array-creation/README.md
@@ -0,0 +1,11 @@
1
+## Array creation
2
+
3
+Start from a Python list containing both integers and floating point values,
4
+and construct then a NumPy array from the list.
5
6
+Generate a 1D NumPy array containing all numbers from -2.0 to 2.0 with a
7
+spacing of 0.2. Use optional start and step arguments of the `np.arange()`
8
+function.
9
10
+Generate another 1D NumPy array containing 11 equally spaced values between
11
+0.5 and 1.5. Extract every second element of the array.
0 commit comments