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


Python Sympy Permutation.rmul_with_af()用法及代碼示例


Permutation.rmul_with_af():rmul_with_af()是一個sympy Python庫函數,該函數返回置換的乘積,但args的元素是具有_array_form的置換對象。

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

返回:排列的乘積。


代碼1:rmul_with_af()示例

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

輸出:

Permutation a – rmul_with_af form : (0 1 3 4 2 5)
Permutation b – rmul_with_af form : (0 2)(1 3)

代碼2:rmul_with_af()示例

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

輸出:

Permutation a – rmul_with_af form : (0 3 5 6 1 2 4)



相關用法


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