当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python numpy.take()用法及代码示例


numpy.take(array, indices, axis = None, out = None, mode =’raise’) :沿提到的轴和索引从数组返回elememts。
参数:

array   : array_like, input array
indices : index of the values to be fetched
axis    : [int, optional] axis over which we need to fetch the elements; 
                  By Default[axis = None], flattened input is used
mode    : [{‘raise’, ‘wrap’, ‘clip’}, optional] mentions how out-of-bound indices will behave
                  raise : [default]raise an error 
                  wrap  : wrap around
                  clip  : clip to the range
out     : [ndarray, optional]to place result within array

返回值:

ndarray; array has the same type
# Python Program illustrating 
# numpy.take method 
  
import numpy as geek 
  
#array = geek.arange(10).reshape(2, 5) 
array = [[5, 6, 2, 7, 1], 
         [4, 9, 2, 9, 3]] 
print("Original array : \n", array) 
  
# indices = [0, 4] 
print("\nTaking Indices\n", geek.take(array, [0, 4])) 
  
# indices = [0, 4] with axis = 1 
print("\nTaking Indices\n", geek.take(array, [0, 4], axis = 1))

输出:


Original array : 
 [[5, 6, 2, 7, 1], [4, 9, 2, 9, 3]]

Taking Indices
 [5 1]

Taking Indices
 [[5 1]
 [4 3]]


相关用法


注:本文由纯净天空筛选整理自 numpy.take() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。