當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


Python SymPy Permutation.get_precedence_matrix()用法及代碼示例

Permutation.get_precedence_matrix():get_precedence_matrix()是一個sympy Python庫函數,可通過計算兩者之間的優先級距離來計算參數中置換的優先級矩陣。

p和q代表n個工作。優先級度量標準計數為no。在p和q中,作業n在作業n之前通常是作業m的次數。這是一個交換矩陣。

用法:
sympy.combinatorics.permutations.Permutation.get_precedence_matrix()

返回:
計算排列的優先矩陣

代碼1:get_precedence_matrix()示例

# Python code explaining 
# SymPy.Permutation.get_precedence_matrix() 
  
# importing SymPy libraries 
from sympy.combinatorics.partitions import Partition 
from sympy.combinatorics.permutations import Permutation 
  
# Using from  
# sympy.combinatorics.permutations.Permutation.get_precedence_matrix() method  
  
# creating Permutation 
a = Permutation([2, 0, 3, 1, 5, 4]) 
  
b = Permutation([3, 1, 2, 5, 4, 0]) 
  
print ("a - get_precedence_matrix : \n", a.get_precedence_matrix()) 
print ("b - get_precedence_matrix : \n", b.get_precedence_matrix())

輸出:

a – get_precedence_matrix :
Matrix([[0, 1, 0, 1, 1, 1],
[0, 0, 0, 0, 1, 1],
[1, 1, 0, 1, 1, 1],
[0, 1, 0, 0, 1, 1],
[0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 1, 0]])

b – get_precedence_matrix :
Matrix([[0, 0, 0, 0, 0, 0],
[1, 0, 1, 0, 1, 1],
[1, 0, 0, 0, 1, 1],
[1, 1, 1, 0, 1, 1],
[1, 0, 0, 0, 0, 0],
[1, 0, 0, 0, 1, 0]])

代碼2:get_precedence_matrix()示例– 2D排列

# Python code explaining 
# SymPy.Permutation.get_precedence_matrix() 
  
# importing SymPy libraries 
from sympy.combinatorics.partitions import Partition 
from sympy.combinatorics.permutations import Permutation 
  
# Using from  
# sympy.combinatorics.permutations.Permutation.get_precedence_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_precedence_matrix : \n", a.get_precedence_matrix()) 
  
print ("\nb get_precedence_matrix : \n", b.get_precedence_matrix())

輸出:

a get_precedence_matrix :
Matrix([[0, 1, 0, 0, 0, 1, 1, 0, 1],
[0, 0, 0, 0, 0, 1, 0, 0, 0],
[1, 1, 0, 1, 1, 1, 1, 1, 1],
[1, 1, 0, 0, 1, 1, 1, 1, 1],
[1, 1, 0, 0, 0, 1, 1, 1, 1],
[0, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 1, 0, 0, 0, 1, 0, 0, 1],
[1, 1, 0, 0, 0, 1, 1, 0, 1],
[0, 1, 0, 0, 0, 1, 0, 0, 0]])

b get_precedence_matrix :
Matrix([[0, 0, 0, 0, 1, 0, 0, 0, 0],
[1, 0, 1, 1, 1, 1, 0, 1, 0],
[1, 0, 0, 0, 1, 1, 0, 1, 0],
[1, 0, 1, 0, 1, 1, 0, 1, 0],
[0, 0, 0, 0, 0, 0, 0, 0, 0],
[1, 0, 0, 0, 1, 0, 0, 1, 0],
[1, 1, 1, 1, 1, 1, 0, 1, 0],
[1, 0, 0, 0, 1, 0, 0, 0, 0],
[1, 1, 1, 1, 1, 1, 1, 1, 0]])



相關用法


注:本文由純淨天空篩選整理自noobestars101大神的英文原創作品 Python | SymPy Permutation.get_precedence_matrix() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。