借助于sympy.fibonacci()方法,我们可以在SymPy中找到斐波那契数和斐波那契多项式。
fibonacci(n) -
The Fibonacci numbers are the integer sequence defined by the initial terms , and the two-term recurrence relation .
用法: fibonacci(n)
参数:
n - It denotes the number upto which Fibonacci number is to be calculated.
返回:Returns the nth Fibonacci number.
用法: fibonacci(n)
参数:
n - It denotes the number upto which Fibonacci number is to be calculated.
返回:Returns the nth Fibonacci number.
范例1:
# import sympy
from sympy import *
n = 7
print("Value of n = {}".format(n))
# Use sympy.fibonacci() method
nth_fibonacci = fibonacci(n)
print("Value of nth fibonacci number:{}".format(nth_fibonacci))
输出:
Value of n = 7 Value of nth fibonacci number:13
fibonacci(n, k) -
斐波那契多项式定义为,和对于。对于所有正整数,。
用法: fibonacci(n, k)
参数:
n -它表示nth斐波那契多项式。
k -它表示斐波那契多项式中的变量。
返回:返回k,F中的第n个斐波那契多项式n(k)
范例2:
# import sympy
from sympy import *
n = 5
k = symbols('x')
print("Value of n = {} and k = {}".format(n, k))
# Use sympy.fibonacci() method
nth_fibonacci_poly = fibonacci(n, k)
print("The nth fibonacci polynomial:{}".format(nth_fibonacci_poly))
输出:
Value of n = 5 and k = x The nth fibonacci polynomial:x**4 + 3*x**2 + 1
范例3:
# import sympy
from sympy import *
n = 6
k = 3
print("Value of n = {} and k = {}".format(n, k))
# Use sympy.fibonacci() method
nth_fibonacci_poly = fibonacci(n, k)
print("The nth fibonacci polynomial value:{}".format(nth_fibonacci_poly))
输出:
Value of n = 6 and k = 3 The nth fibonacci polynomial value:360
相关用法
- Python next()用法及代码示例
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python Decimal max()用法及代码示例
- Python PIL ImageOps.fit()用法及代码示例
- Python os.rmdir()用法及代码示例
- Python sympy.det()用法及代码示例
- Python Decimal min()用法及代码示例
- Python os.readlink()用法及代码示例
- Python os.writev()用法及代码示例
- Python os.readv()用法及代码示例
- Python PIL RankFilter()用法及代码示例
- Python os.rename()用法及代码示例
- Python os.sendfile()用法及代码示例
注:本文由纯净天空筛选整理自rupesh_rao大神的英文原创作品 Python | sympy.fibonacci() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。