【发布时间】:2011-10-09 22:28:38
【问题描述】:
我正在尝试使用来自 argmin(或相关的 argmax 等函数)的 2D 索引数组来索引大型 3D 数组。这是我的示例数据:
import numpy as np
shape3d = (16, 500, 335)
shapelen = reduce(lambda x, y: x*y, shape3d)
# 3D array of [random] source integers
intcube = np.random.uniform(2, 50, shapelen).astype('i').reshape(shape3d)
# 2D array of indices of minimum value along first axis
minax0 = intcube.argmin(axis=0)
# Another 3D array where I'd like to use the indices from minax0
othercube = np.zeros(shape3d)
# A 2D array of [random] values I'd like to assign in othercube
some2d = np.empty(shape3d[1:])
此时,两个 3D 数组的形状相同,而 minax0 数组的形状为 (500, 335)。现在我想将 2D 数组 some2d 中的值分配给 3D 数组 othercube,使用 minax0 作为第一维的索引位置。这是我正在尝试的,但不起作用:
othercube[minax0] = some2d # or
othercube[minax0,:] = some2d
抛出错误:
ValueError:花式索引中的尺寸太大
注意:我目前正在使用,但不是非常 NumPythonic:
for r in range(shape3d[1]):
for c in range(shape3d[2]):
othercube[minax0[r, c], r, c] = some2d[r, c]
我一直在网上寻找可以索引othercube 的类似示例,但我没有找到任何优雅的东西。这需要advanced index 吗?有什么建议吗?
【问题讨论】:
-
感谢您遇到此问题!我的日子更适合它引发的答案。