Python:使用列表来索引[from:to]任意numpy数组
我想将一个块从一个矩阵复制到另一个矩阵中。 要使用任何类型的n维数组,我需要通过[]运算符应用带有偏移量的列表。有没有办法做到这一点?Python:使用列表来索引[from:to]任意numpy数组
mat_bigger[0:5, 0:5, ..] = mat_smaller[2:7, 2:7, ..]
,如:
off_min = [0,0,0] off_max = [2,2,2]
for i in range(len(off_min)):
mat_bigger[off_min[i] : off_max[i], ..] = ..
回答:
您可以通过创建slice
一组对象做到这一点。例如:
mat_big = np.zeros((4, 5, 6)) mat_small = np.random.rand(2, 2, 2)
off_min = [2, 3, 4]
off_max = [4, 5, 6]
slices = tuple(slice(start, end) for start, end in zip(off_min, off_max))
mat_big[slices] = mat_small
以上是 Python:使用列表来索引[from:to]任意numpy数组 的全部内容, 来源链接: utcz.com/qa/264293.html