你怎么能建立一个模拟二维网格的邻接矩阵

时间:2013-05-02 02:26:33

标签: python language-agnostic graph-theory graph-algorithm adjacency-matrix

基本上只是想知道这样做的好方法是在python中,我之前在python中使用了一种强力方式,但它只是不是直观的方式。所以,如果有人能帮忙,那就好了。

5 个答案:

答案 0 :(得分:8)

对于逐行网格,邻接矩阵如下所示:

  • 在一行内,相邻的数字形成两个平行的对角线。这会占据 Columns × Columns 子矩阵,沿着大矩阵的对角线重复。
  • 相邻的行形成一个对角线。这占据了两个对角线,在行子矩阵之外偏移。
row 1 row 2 row 3
----- ----- -----  _
A A A 1 . . . . .   |
A A A . 1 . . . .   | row 1
A A A . . 1 . . .  _|
1 . . B B B 1 . .   |
. 1 . B B B . 1 .   | row 2
. . 1 B B B . . 1  _|
. . . 1 . . C C C   |
. . . . 1 . C C C   | row 3
. . . . . 1 C C C  _|

子矩阵在主对角线的每一侧都有两个对角线:

column
1 2 3 4 5 6
- - - - - -
. 1 . . . .  1 column
1 . 1 . . .  2
. 1 . 1 . .  3
. . 1 . 1 .  4 
. . . 1 . 1  5
. . . . 1 .  6
def make_matrix(rows, cols):
    n = rows*cols
    M = matrix(n,n)
    for r in xrange(rows):
        for c in xrange(cols):
            i = r*cols + c
            # Two inner diagonals
            if c > 0: M[i-1,i] = M[i,i-1] = 1
            # Two outer diagonals
            if r > 0: M[i-cols,i] = M[i,i-cols] = 1

对于3×4网格,矩阵看起来像:

. 1 . . 1 . . . . . . . 
1 . 1 . . 1 . . . . . . 
. 1 . 1 . . 1 . . . . . 
. . 1 . . . . 1 . . . . 
1 . . . . 1 . . 1 . . . 
. 1 . . 1 . 1 . . 1 . . 
. . 1 . . 1 . 1 . . 1 . 
. . . 1 . . 1 . . . . 1 
. . . . 1 . . . . 1 . . 
. . . . . 1 . . 1 . 1 . 
. . . . . . 1 . . 1 . 1 
. . . . . . . 1 . . 1 . 

答案 1 :(得分:3)

我首先要为几个例子手动生成一些邻接矩阵,然后看看是否出现了任何(易于编程的)模式。邻接矩阵取决于您如何标记节点(按什么顺序),因此不同的排序可能会产生在生成函数中更容易或更难编码的模式。

a couple example lattice grid graphs with different structure depending on the node labeling

这是一个有趣的问题,虽然我现在没有确切的答案,但我会继续思考(也许这可能有助于引导您或其他人找到解决方案)。

答案 2 :(得分:3)

这样做的一个好方法是使用Kronecker product,它允许您快速构建一个像Markus Jarderot所描述的那样的矩阵。

这是具有周期性边界条件的晶格的代码

import scipy.linalg as la
import numpy as np
offdi = la.circulant([0,1,0,0,1])
I = np.eye(5)

import matplotlib.pyplot as plt
A = np.kron(offdi,I) + np.kron(I,offdi)
plt.matshow(A)
plt.show()

enter image description here

此处np.kron(I,offdi)将矩阵offdi放置在主块对角线中,该矩阵I编码网格行内的连通性。这是由Kronecker乘以np.kron(offdi,I)完成的。 la.toeplitz([0,1,0,0,0])正好相反:在下一个块对角线上下放置一个单位矩阵。这意味着节点在连续的行中向上和向下连接到同一列中的事物。

如果您希望网格是非周期性的,而只是没有链接的边界,则可以使用Toeplitz构造而不是循环构造:$db->rows_affected;

答案 3 :(得分:1)

PySAL(Python空间分析库)包括用于创建邻接矩阵的功能-

00 2304 9HK

对于稀疏表示:

import pysal

w = pysal.lat2W(2, 2) # make a 2x2 lattice with rook connectivity
# <pysal.weights.weights.W at 0x257aa470128>

对于完整的数组表示形式:

w.neighbors
# {0: [2, 1], 2: [0, 3], 1: [0, 3], 3: [1, 2]}

请参见https://pysal.readthedocs.io/en/latest/users/tutorials/weights.html#spatial-weights

答案 4 :(得分:0)

这里是一个纯NumPy解决方案,希望它更直观。诀窍是通过考虑x,y坐标来思考2d网格中的节点,然后连接距其+ -1 x或y的节点。该解决方案不会围绕网格。

def grid_adj(N: int) -> np.ndarray:
  """Creates a 2D grid adjacency matrix."""
  sqN = np.sqrt(N).astype(int)  # There will sqN many nodes on x and y
  adj = np.zeros((sqN, sqN, sqN, sqN), dtype=bool)
  # Take adj to encode (x,y) coordinate to (x,y) coordinate edges
  # Let's now connect the nodes
  for i in range(sqN):
    for j in range(sqN):
      # Connect x=i, y=j, to x-1 and x+1, y-1 and y+1
      adj[i, j, max((i-1), 0):(i+2), max((j-1), 0):(j+2)] = True
      # max is used to avoid negative slicing, and +2 is used because
      # slicing does not include last element.
  adj = adj.reshape(N, N)  # Back to node-to-node shape
  # Remove self-connections (optional)
  adj ^= np.eye(N, dtype=bool)
  return adj

# Visualise
plt.matshow(grid_adj(25))
plt.show()
# Print number of edges
np.flatnonzero(adj).size

这将产生: adj_matrix_image