Python | sympy from_rgs() method

With the help of sympy.combinatorics.Partition.from_rgs() method, we can get the array of subarrays by passing array of indexes and list of members by using sympy.combinatorics.Partition.from_rgs() method.
Syntax :
sympy.combinatorics.Partition.from_rgs()Return : Return the array of subarrays.
Example #1 :
In this example we can see that by using
In this example we can see that by using
sympy.combinatorics.Partition.from_rgs() method, we are able to get the array of subarray by passing array of indexes and list of members as passed by parameters.
# import sympy and Relational from sympy.combinatorics.partitions import Partition from sympy import * x, y = symbols('x y') # Using from sympy.combinatorics.Partition.from_rgs() method gfg = Partition.from_rgs([0, 1, 2, 0, 1, 2], list('abcdef')) print(gfg) |
Output :
{{a, d}, {b, e}, {c, f}}
Example #2 :
# import sympy and Relational from sympy.combinatorics.partitions import Partition from sympy import * x, y = symbols('x y') # Using from sympy.combinatorics.Partition.from_rgs() method gfg = Partition.from_rgs([0, 1, 2, 0, 1, 2, 3, 4, 3, 4, 0, 1, 5], list('abcdefghijklm')) print(gfg) |
Output :
{{m}, {c, f}, {g, i}, {h, j}, {a, d, k}, {b, e, l}}
<!–
–>

Python | Sympy Line.is_parallel() method

Python | sympy.GreaterThan() method

Python | sympy.StrictLessThan() method

Python | sympy.LessThan() method

Python | sympy.StrictGreaterThan() method

Python | sympy.ones() method

Python | sympy.zeros() method

Python | sympy.eye() method

Python | Sympy Ellipse.equation() method

Python | Sympy Ellipse() method




Please Login to comment…