Partition.RGS_enum():RGS_enum()是一个sympy Python库函数,用于计算受限制的增长字符串(其中a [i]是元素i所在的块的字符串)的总数,这对于大小为n的超集是可能的。
受限制的增长条件-每个字符中的一个字符串i结果在块(Bi)对应的元素所属。
用法: sympy.combinatorics.partitions.Partition.RGS_enum()
返回:受限制的增长字符串的总数,可能对于大小为n的超集。
代码1:RGS_enum()示例
# Python code explaining
# SymPy.RGS_enum()
# importing SymPy libraries
from sympy.combinatorics.partitions import Partition
from sympy.combinatorics.partitions import RGS_enum
# Using from sympy.combinatorics.partitions.Partition.RGS_enum() method
p = RGS_enum(4)
q = RGS_enum(9)
print ("no. of strings possible for size 4: ", p)
print ("no. of strings possible for size 9: ", q)
输出:
no. of strings possible for size 4: 15
no. of strings possible for size 9: 203
代码2:RGS_enum()示例
# Python code explaining
# SymPy.RGS_enum()
# importing SymPy libraries
from sympy.combinatorics.partitions import Partition
from sympy.combinatorics.partitions import RGS_enum
# Using from sympy.combinatorics.partitions.Partition.RGS_enum() method
p = RGS_enum(20)
q = RGS_enum(-1)
print ("no. of strings possible for size 20 ", p)
print ("no. of strings possible for size -1: ", q)
输出:
no. of strings possible for size 20 51724158235372
no. of strings possible for size -1: 0
相关用法
- Python sympy.cot()用法及代码示例
- Python sympy.S.EulerGamma用法及代码示例
- Python sympy.div()用法及代码示例
- Python sympy.lcm()用法及代码示例
- Python sympy.gcd()用法及代码示例
- Python Sympy Prufer.next()用法及代码示例
- Python Sympy Permutation.min()用法及代码示例
- Python sympy.Pow()用法及代码示例
- Python sympy.Mod()用法及代码示例
- Python sympy.S.GoldenRatio用法及代码示例
- Python sympy.det()用法及代码示例
- Python sympy.csc()用法及代码示例
- Python Sympy Permutation.max()用法及代码示例
- Python sympy.crt()用法及代码示例
- Python sympy.apart()用法及代码示例
注:本文由纯净天空筛选整理自noobestars101大神的英文原创作品 SymPy | Partition.RGS_enum() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。