numpy中的整数数组索引功能

时间:2019-05-04 18:43:48

标签: numpy indexing

有人可以解释以下逻辑-行,列和y发生了什么?预先感谢。

    import numpy as np 
    x = np.array([[ 0,  1,  2],[ 3,  4,  5],[ 6,  7,  8],[ 9, 10, 11]]) 

    print('Our array is:')
    print(x)
    print('\n') 

    rows = np.array([[0,0],[3,3]])
    cols = np.array([[0,2],[0,2]]) 
    y = x[rows,cols] 

    print('The corner elements of this array are:') 
    print(y)

0 个答案:

没有答案