当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Sympy Partition.conjugate()用法及代码示例


Partition.conjugate():conjugate()是一个sympy Python库函数,返回带参数的分区的共轭分区。

用法: sympy.combinatorics.partitions.Partition.conjugate()

返回:共轭分配


代码1:conjugate()示例

# Python code explaining 
# SymPy.conjugate() 
  
# importing SymPy libraries 
from sympy.combinatorics.partitions import Partition 
from sympy.combinatorics.partitions import IntegerPartition 
  
# Using from sympy.combinatorics.partitions.Partition.conjugate() method  
p = IntegerPartition([312, 14, 23]) 
print ('Conjugate : ', p.conjugate)

输出:

Conjugate : [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 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, 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, 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, 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, 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, 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, 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, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1]

代码2:conjugate()示例–显示ValueError。

# Python code explaining 
# SymPy.conjugate() 
  
# importing SymPy libraries 
from sympy.combinatorics.partitions import Partition 
from sympy.combinatorics.partitions import IntegerPartition 
  
# Using from sympy.combinatorics.partitions.Partition.conjugate() method  
  
# Only positive elements are required  
# so this will generate error 
p = IntegerPartition([312, 14, -10, 23, -1]) 
print ('Conjugate : ', p.conjugate)

输出:

ValueError: The summands must all be positive.



相关用法


注:本文由纯净天空筛选整理自noobestars101大神的英文原创作品 SymPy | Partition.conjugate() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。