借助於sympy.ff()方法,我們可以找到下降因子。下降階乘定義為-
其中x可以是任意表達式,k是整數。
用法: ff(x, k)
參數:
x -它表示任何任意表達式。
k -它表示一個整數。
返回:返回與給定輸入相對應的下降階乘。
範例1:
# import sympy
from sympy import *
x = symbols('x')
k = 5
print("Value of x = {} and k = {}".format(x, k))
# Use sympy.ff() method
ff_x_k = ff(x, k)
print("Falling factorial ff(x, k) : {}".format(ff_x_k))
輸出:
Value of x = x and k = 5 Falling factorial ff(x, k) : x*(x - 4)*(x - 3)*(x - 2)*(x - 1)
範例2:
# import sympy
from sympy import * x = 7
k = 5
print("Value of x = {} and k = {}".format(x, k))
# Use sympy.ff() method
ff_x_k = ff(x, k)
print("Falling factorial ff(x, k) : {}".format(ff_x_k))
輸出:
Value of x = 7 and k = 5 Falling factorial ff(x, k) : 2520
相關用法
- 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.ff() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。