Partition.RGS_unrank(rank,n):RGS_unrank()是一个sympy Python库函数,为大小为n的超集提供未排序的受限增长字符串(其中a [i]是元素i所在的块的字符串)。
受限制的增长条件-每个字符中的一个字符串i结果在块(Bi)对应的元素所属。
用法: sympy.combinatorics.partitions.Partition.RGS_unrank()
返回:对大小为n的超集的限制增长进行了排名。
代码1:RGS_unrank()示例
# Python code explaining
# SymPy.RGS_unrank()
# importing SymPy libraries
from sympy.combinatorics.partitions import Partition
from sympy.combinatorics.partitions import RGS_unrank
# Using from sympy.combinatorics.partitions.Partition.RGS_unrank() method
rank = 10
n = 5
p = RGS_unrank(rank, n)
print ("unranked restricted growth string for super size 10 : \n", p)
输出:
unranked restricted growth string for super size 10 :
[0, 0, 1, 1, 2]
代码2:RGS_unrank()示例
# Python code explaining
# SymPy.RGS_unrank()
# importing SymPy libraries
from sympy.combinatorics.partitions import Partition
from sympy.combinatorics.partitions import RGS_unrank
# Using from sympy.combinatorics.partitions.Partition.RGS_unrank() method
p = RGS_unrank(100, 10)
print ("unranked restricted growth string for super size 10 : \n", p)
输出:
unranked restricted growth string for super size 10 :
[0, 0, 0, 0, 0, 1, 1, 1, 0, 1]
相关用法
- 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_unrank() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。