📜  Python|同情 RGS 方法

📅  最后修改于: 2022-05-13 01:54:45.008000             🧑  作者: Mango

Python|同情 RGS 方法

借助sympy.combinatorics.Partition().RGS方法,我们可以通过使用sympy.combinatorics.Partition().RGSPartition()方法中传递的方式获取子数组成员的索引值。 sympy.combinatorics.Partition().RGS方法。

示例 #1:
在这个例子中我们可以看到,通过使用sympy.combinatorics.Partition().RGS方法,我们可以在一个元组中获取子数组成员的索引值。
# import sympy and Relational
from sympy.combinatorics.partitions import Partition
from sympy import * 
  
x, y = symbols('x y')
  
# Using from sympy.combinatorics.partitions.Partition() method
gfg = Partition([1, 2], [4, 5, 6], [-12, -11])
  
print(gfg.RGS)

输出 :

示例 #2:

# import sympy and Relational
from sympy.combinatorics.partitions import Partition
from sympy import * 
  
x, y = symbols('x y')
  
# Using from sympy.combinatorics.partitions.Partition() method
gfg = Partition([3], [1, 91], [2], [6])
  
print(gfg.RGS)

输出 :