在2d阵列的Numpy卷垂直

时间:2016-11-01 12:19:10

标签: python arrays numpy

如何(有效地)执行以下操作:

x = np.arange(49)
x2 = np.reshape(x, (7,7))

x2
array([[ 0,  1,  2,  3,  4,  5,  6],
       [ 7,  8,  9, 10, 11, 12, 13],
       [14, 15, 16, 17, 18, 19, 20],
       [21, 22, 23, 24, 25, 26, 27],
       [28, 29, 30, 31, 32, 33, 34],
       [35, 36, 37, 38, 39, 40, 41],
       [42, 43, 44, 45, 46, 47, 48]])

从这里开始我想推出几件事。 我想掷0,7,14,21等所以14来到顶部。 然后与4,11,18,25等相同,所以39位于顶部 结果应该是:

x2
array([[14,  1,  2,  3, 39,  5,  6],
       [21,  8,  9, 10, 46, 12, 13],
       [28, 15, 16, 17,  4, 19, 20],
       [35, 22, 23, 24, 11, 26, 27],
       [42, 29, 30, 31, 18, 33, 34],
       [ 0, 36, 37, 38, 25, 40, 41],
       [ 7, 43, 44, 45, 32, 47, 48]])

我抬头看了numpy.roll,这里和谷歌但是找不到怎么会这样做 对于水平滚动,我可以这样做:

np.roll(x2[0], 3, axis=0)

x3
array([4, 5, 6, 0, 1, 2, 3])

但是如何将此滚动更改作为新副本返回完整数组?

4 个答案:

答案 0 :(得分:3)

以负移动滚动:

x2[:, 0] = np.roll(x2[:, 0], -2)

正向转动:

x2[:, 4] = np.roll(x2[:, 4], 2)

给出:

>>>x2
array([[14,  1,  2,  3, 39,  5,  6],
       [21,  8,  9, 10, 46, 12, 13],
       [28, 15, 16, 17,  4, 19, 20],
       [35, 22, 23, 24, 11, 26, 27],
       [42, 29, 30, 31, 18, 33, 34],
       [ 0, 36, 37, 38, 25, 40, 41],
       [ 7, 43, 44, 45, 32, 47, 48]])

答案 1 :(得分:0)

您必须覆盖列

e.g:

*

答案 2 :(得分:0)

以下是使用advanced-indexing -

一次滚动多列的方法
# Params
cols = [0,4]  # Columns to be rolled
dirn = [2,-2] # Offset with direction as sign

n = x2.shape[0]
x2[:,cols] = x2[np.mod(np.arange(n)[:,None] + dirn,n),cols]

示例运行 -

In [45]: x2
Out[45]: 
array([[ 0,  1,  2,  3,  4,  5,  6],
       [ 7,  8,  9, 10, 11, 12, 13],
       [14, 15, 16, 17, 18, 19, 20],
       [21, 22, 23, 24, 25, 26, 27],
       [28, 29, 30, 31, 32, 33, 34],
       [35, 36, 37, 38, 39, 40, 41],
       [42, 43, 44, 45, 46, 47, 48]])

In [46]: cols = [0,4,5]  # Columns to be rolled
    ...: dirn = [2,-2,4] # Offset with direction as sign
    ...: n = x2.shape[0]
    ...: x2[:,cols] = x2[np.mod(np.arange(n)[:,None] + dirn,n),cols]
    ...: 

In [47]: x2  # Three columns rolled
Out[47]: 
array([[14,  1,  2,  3, 39, 33,  6],
       [21,  8,  9, 10, 46, 40, 13],
       [28, 15, 16, 17,  4, 47, 20],
       [35, 22, 23, 24, 11,  5, 27],
       [42, 29, 30, 31, 18, 12, 34],
       [ 0, 36, 37, 38, 25, 19, 41],
       [ 7, 43, 44, 45, 32, 26, 48]])

答案 3 :(得分:0)

请参阅此处一种在所有4个方向(上,下,左,右)上移动2D数组的有用方法:

def image_shift_roll(img, x_shift, y_roll):
    img_roll = img.copy()
    img_roll = np.roll(img_roll, -y_roll, axis = 0)    # Positive y rolls up
    img_roll = np.roll(img_roll, x_roll, axis = 1)     # Positive x rolls right
    return img_roll
相关问题