index numpy array code example

Example 1: indexing a numpy array in python

array = [[0  1  2  3  4  5] 
  [6 7 8 9 10 11]
  [12 13 14 15 16 17]
  [18 19 20 21 22 23]
  [24 25 26 27 28 29]
  [30 31 32 33 34 35]]
array[0, 3:5]  =  [3 4]

array[4:, 4:] = [[28 29],
             [34 35]]

array[:, 2] =  [2 8 14 20 26 32]

array[2:;2, ::2] = [[12 14 16],
                [24 26 28]]

Example 2: how to index an array in python

arrayName[Index Number]

Example 3: numpy indexing

>>> x = np.array([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
>>> x[1:7:2]
array([1, 3, 5])

Example 4: how to get single element from arraylist in numpy arrayt

>>> import numpy as np
>>> np_arr = np.array([[1,2,3], [4,5,6], [7,8,9]])
>>> np_arr
array([[1, 2, 3],
       [4, 5, 6],
       [7, 8, 9]])
>>> arr = [ele[0] for ele in np_arr]
>>> arr
[1, 4, 7]

Tags:

Misc Example