借助於sympy.rewrite()方法,我們可以用另一個函數表示任何數學函數。
用法: expression.rewrite(function)
參數:
expression –它是數學表達式,將由另一個函數表示。
function –它是用於重寫給定表達式的數學函數。
返回值:根據指定函數返回與輸入相對應的數學表達式。
示例1:
# import sympy
from sympy import *
x = symbols('x')
expr = tan(x)
print("Expression = {}".format(expr))
# Use sympy.rewrite() method
expr_in_terms_of_sin = expr.rewrite(sin)
print("Expression in terms of sin() : {}".format(expr_in_terms_of_sin))
輸出:
Expression = tan(x) Expression in terms of sin() : 2*sin(x)**2/sin(2*x)
示例2:
# import sympy
from sympy import *
x = symbols('x')
expr = factorial(x)
print("Expression = {}".format(expr))
# Use sympy.rewrite() method
expr_in_terms_of_gamma = expr.rewrite(gamma)
print("Expression in terms of gamma() : {}".format(expr_in_terms_of_gamma))
輸出:
Expression = factorial(x) Expression in terms of gamma() : gamma(x + 1)
相關用法
- Python next()用法及代碼示例
- Python os.dup()用法及代碼示例
- Python set()用法及代碼示例
- Python os.abort()用法及代碼示例
- Python os.WEXITSTATUS()用法及代碼示例
- Python os.fchmod()用法及代碼示例
- Python PIL getpixel()用法及代碼示例
- Python PIL putpixel()用法及代碼示例
- Python os.sysconf()用法及代碼示例
- Python os.confstr()用法及代碼示例
- Python os._exit()用法及代碼示例
- Python cmath.log()用法及代碼示例
- Python Tensorflow cos()用法及代碼示例
- Python sympy.rf()用法及代碼示例
注:本文由純淨天空篩選整理自rupesh_rao大神的英文原創作品 Python | sympy.rewrite() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。