本文简要介绍 python 语言中 numpy.take_along_axis
的用法。
用法:
numpy.take_along_axis(arr, indices, axis)
通过匹配一维索引和数据切片从输入数组中获取值。
这会遍历索引和数据数组中沿指定轴定向的匹配 1d 切片,并使用前者在后者中查找值。这些切片可以是不同的长度。
沿轴返回索引的函数(如
argsort
和argpartition
)会为此函数生成合适的索引。- 输出:ndarray(Ni…,J,Nk…)
索引的结果。
参数:
返回:
注意:
这相当于(但比)以下使用
ndindex
和s_
,将ii
和kk
设置为索引元组:Ni, M, Nk = a.shape[:axis], a.shape[axis], a.shape[axis+1:] J = indices.shape[axis] # Need not equal M out = np.empty(Ni + (J,) + Nk) for ii in ndindex(Ni): for kk in ndindex(Nk): a_1d = a [ii + s_[:,] + kk] indices_1d = indices[ii + s_[:,] + kk] out_1d = out [ii + s_[:,] + kk] for j in range(J): out_1d[j] = a_1d[indices_1d[j]]
等效地,消除内部循环,最后两行将是:
out_1d[:] = a_1d[indices_1d]
例子:
对于这个示例数组
>>> a = np.array([[10, 30, 20], [60, 40, 50]])
我们可以使用 sort 直接排序,也可以使用 argsort 和这个函数
>>> np.sort(a, axis=1) array([[10, 20, 30], [40, 50, 60]]) >>> ai = np.argsort(a, axis=1); ai array([[0, 2, 1], [1, 2, 0]]) >>> np.take_along_axis(a, ai, axis=1) array([[10, 20, 30], [40, 50, 60]])
如果扩展尺寸,max 和 min 也是如此:
>>> np.expand_dims(np.max(a, axis=1), axis=1) array([[30], [60]]) >>> ai = np.expand_dims(np.argmax(a, axis=1), axis=1) >>> ai array([[1], [0]]) >>> np.take_along_axis(a, ai, axis=1) array([[30], [60]])
如果我们想同时得到最大值和最小值,我们可以先堆叠索引
>>> ai_min = np.expand_dims(np.argmin(a, axis=1), axis=1) >>> ai_max = np.expand_dims(np.argmax(a, axis=1), axis=1) >>> ai = np.concatenate([ai_min, ai_max], axis=1) >>> ai array([[0, 1], [1, 0]]) >>> np.take_along_axis(a, ai, axis=1) array([[10, 30], [40, 60]])
相关用法
- Python numpy take用法及代码示例
- Python numpy tanh用法及代码示例
- Python numpy tan用法及代码示例
- Python numpy trim_zeros用法及代码示例
- Python numpy testing.rundocs用法及代码示例
- Python numpy testing.assert_warns用法及代码示例
- Python numpy trace用法及代码示例
- Python numpy testing.assert_array_almost_equal_nulp用法及代码示例
- Python numpy tri用法及代码示例
- Python numpy testing.assert_array_less用法及代码示例
- Python numpy testing.assert_raises用法及代码示例
- Python numpy true_divide用法及代码示例
- Python numpy transpose用法及代码示例
- Python numpy testing.assert_almost_equal用法及代码示例
- Python numpy tile用法及代码示例
- Python numpy testing.assert_approx_equal用法及代码示例
- Python numpy testing.assert_allclose用法及代码示例
- Python numpy testing.decorators.slow用法及代码示例
- Python numpy trapz用法及代码示例
- Python numpy testing.suppress_warnings用法及代码示例
- Python numpy testing.assert_string_equal用法及代码示例
- Python numpy testing.run_module_suite用法及代码示例
- Python numpy testing.assert_array_max_ulp用法及代码示例
- Python numpy testing.assert_equal用法及代码示例
- Python numpy triu_indices用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.take_along_axis。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。