在矩阵中对点进行分类(Python)

时间:2018-11-29 08:40:20

标签: python python-3.x numpy

我有一个大矩阵,例如600x600,在9个相同的扇区中有9个点(#像井字游戏一样)。 我需要将其转换为3x3阵列,并在此扇区中添加点的iD,例如: [[id2,id1,id5],[id4,id6,id7],[id3,id8,id9]] 将飞机分成9架小飞机真的很糟糕。我需要类似相对位置的东西,甚至都不知道我需要谷歌搜索的世界

@GeneratedValue(strategy = GenerationType.IDENTITY)

1 个答案:

答案 0 :(得分:0)

根据上面的评论。仍然需要澄清,但显示了一种解释您的问题的方法。

In [1]: import numpy as np

In [2]: data_in=np.fromfunction(lambda r, c: 10*r+c, (6, 6))
        # Create an array where the vales give a indication of where they are in the array.

In [3]: data_in
Out[3]: 
array([[ 0.,  1.,  2.,  3.,  4.,  5.],
       [10., 11., 12., 13., 14., 15.],
       [20., 21., 22., 23., 24., 25.],
       [30., 31., 32., 33., 34., 35.],
       [40., 41., 42., 43., 44., 45.],
       [50., 51., 52., 53., 54., 55.]])

In [4]: slices=[np.s_[0:3], np.s_[3:6] ]

In [5]: slices
Out[5]: [slice(0, 3, None), slice(3, 6, None)]

In [8]: result=np.zeros((4,3,3), dtype=np.int32)

In [9]: ix=0

In [12]: for rows in slices:
    ...:     for columns in slices:
    ...:         result[ix,:,:]=data_in[rows, columns]
    ...:         ix+=1
    ...:         

In [13]: result
Out[13]: 
array([[[ 0,  1,  2],
        [10, 11, 12],    # Top Left in data_in
        [20, 21, 22]],

       [[ 3,  4,  5],
        [13, 14, 15],    # Top Right in data_in            
        [23, 24, 25]],

       [[30, 31, 32],
        [40, 41, 42],    # Bottom Left in data_in
        [50, 51, 52]],

       [[33, 34, 35],
        [43, 44, 45],    # Bottom Right in data_in
        [53, 54, 55]]], dtype=int32)

您可以以此为基础来解释您期望看到的内容吗? 如果您的输入数据只有6 x 6,它会是什么样,您希望看到什么?

编辑:纠正了两个错字。