當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python sympy partitions.RGS_generalized()用法及代碼示例


借助sympy.combinatorics.partitions.RGS_generalized()方法,我們可以獲取m + 1個不受限製的增長字符串,並通過使用返回一個矩陣sympy.combinatorics.partitions.RGS_generalized()方法。

用法: sympy.combinatorics.partitions.RGS_generalized(m)
返回:Return a matrix of size m+1.

範例1:
在這個例子中,我們可以通過使用sympy.combinatorics.partitions.RGS_generalized()方法,我們可以獲取不受限製的增長字符串,並返回大小為m + 1的矩陣。


# import sympy and RGS_generalized 
from sympy.combinatorics.partitions import RGS_generalized 
from sympy import *
    
# Using sympy.combinatorics.partitions.RGS_generalized() method 
gfg = RGS_generalized(3) 
  
print(gfg)

輸出:

Matrix(
[ [1, 1, 1, 1],
[1, 2, 3, 0],
[2, 5, 0, 0],
[5, 0, 0, 0] ])

範例2:

# import sympy and RGS_generalized 
from sympy.combinatorics.partitions import RGS_generalized 
from sympy import *
    
# Using sympy.combinatorics.partitions.RGS_generalized() method 
gfg = RGS_generalized(6) 
  
print(gfg)

輸出:

Matrix(
[ [1, 1, 1, 1, 1, 1, 1],
[1, 2, 3, 4, 5, 6, 0],
[2, 5, 10, 17, 26, 0, 0],
[5, 15, 37, 77, 0, 0, 0],
[15, 52, 151, 0, 0, 0, 0],
[52, 203, 0, 0, 0, 0, 0],
[203, 0, 0, 0, 0, 0, 0] ])



相關用法


注:本文由純淨天空篩選整理自Jitender_1998大神的英文原創作品 Python | sympy partitions.RGS_generalized() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。