Python| SymPy Permutation.get_adjacency_matrix() 方法
Permutation.get_adjacency_matrix() :get_adjacency_matrix()是一个 sympy Python库函数,用于计算参数中排列的邻接矩阵。
Syntax :
sympy.combinatorics.permutations.Permutation.get_adjacency_matrix()
Return :
calculates the adjacency matrix for the permutation
代码 #1:get_adjacency_matrix() 示例
# Python code explaining
# SymPy.Permutation.get_adjacency_matrix()
# importing SymPy libraries
from sympy.combinatorics.partitions import Partition
from sympy.combinatorics.permutations import Permutation
# Using from
# sympy.combinatorics.permutations.Permutation.get_adjacency_matrix() method
# creating Permutation
a = Permutation([2, 0, 3, 1, 5, 4])
b = Permutation([3, 1, 2, 5, 4, 0])
print ("a - get_adjacency_matrix : \n", a.get_adjacency_matrix())
print ("b - get_adjacency_matrix : \n", b.get_adjacency_matrix())
输出 :
a – get_adjacency_matrix :
Matrix([[0, 0, 0, 1, 0, 0],
[0, 0, 0, 0, 0, 1],
[1, 0, 0, 0, 0, 0],
[0, 1, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 1, 0]])
b – get_adjacency_matrix :
Matrix([[0, 0, 0, 0, 0, 0],
[0, 0, 1, 0, 0, 0],
[0, 0, 0, 0, 0, 1],
[0, 1, 0, 0, 0, 0],
[1, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 1, 0]])
代码 #2 : get_adjacency_matrix() 示例– 2D 排列
# Python code explaining
# SymPy.Permutation.get_adjacency_matrix()
# importing SymPy libraries
from sympy.combinatorics.partitions import Partition
from sympy.combinatorics.permutations import Permutation
# Using from
# sympy.combinatorics.permutations.Permutation.get_adjacency_matrix() method
# creating Permutation
a = Permutation([[2, 4, 0],
[7, 1, 3],
[8, 5, 6]])
b = Permutation([[8, 4, 0],
[2, 7, 0],
[1, 6, 7]])
print ("a get_adjacency_matrix : \n", a.get_adjacency_matrix())
print ("\nb get_adjacency_matrix : \n", b.get_adjacency_matrix())
输出 :
a get_adjacency_matrix :
Matrix([[0, 0, 0, 0, 0, 0, 1, 0, 0],
[0, 0, 0, 0, 0, 1, 0, 0, 0],
[0, 0, 0, 1, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 1, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 1, 0],
[0, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0, 1],
[1, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 1, 0, 0, 0, 0, 0, 0, 0]])
b get_adjacency_matrix :
Matrix([[0, 0, 0, 0, 1, 0, 0, 0, 0],
[0, 0, 0, 1, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 1, 0, 0, 0],
[0, 0, 1, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 1, 0],
[0, 1, 0, 0, 0, 0, 0, 0, 0],
[1, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 1, 0, 0]])