Con la ayuda del sympy.combinatorics.partitions.RGS_generalized()
método, podemos obtener la string de crecimiento sin restricciones m+1 y devolver una array usando el sympy.combinatorics.partitions.RGS_generalized()
método.
Sintaxis:
sympy.combinatorics.partitions.RGS_generalized(m)
Retorno: Retorna una array de tamaño m+1.
Ejemplo n.º 1:
en este ejemplo, podemos ver que al usar sympy.combinatorics.partitions.RGS_generalized()
el método, podemos obtener la string de crecimiento sin restricciones y devolver una array de tamaño 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)
Producción :
Array (
[ [1, 1, 1, 1],
[1, 2, 3, 0],
[2, 5, 0, 0],
[5, 0, 0, 0] ])
Ejemplo #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)
Producción :
Array (
[ [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] ])
Publicación traducida automáticamente
Artículo escrito por Jitender_1998 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA