numpy 花式索引

numpy 的花式索引 numpy的花式索引方式有不少種,特別是多維度索引的狀況下比較繞,須要理解清楚。html 一維的花式索引,i數組的值對應的就是a數組的索引,這樣輸出了一個新的數組 # input import numpy as np a = np.arange(12) ** 2 i = np.array([1, 1, 3, 8, 5]) print(a[i]) # output [ 1
相關文章
相關標籤/搜索