Python|同情。函数()方法
借助sympy.Function()
方法,我们可以使用sympy.Function()
() 方法找到整个数学表达式中的各种函数,如 f(x)、sin(x)、log(x) 等。
Syntax : sympy.Function()
Return : Return the list of functions in mathematical operation.
示例 #1:
在这个例子中,我们可以看到通过使用sympy.Function()
方法,我们能够在数学运算中找到函数。
# import sympy
from sympy import *
x, y = symbols('x y')
f = Function('f')
# Use sympy.Function() method
gfg = (f(x) + 2 * tan(y + I * pi) + log(2 * x)).atoms(Function)
print(gfg)
输出 :
{f(x), tan(y + I*pi), log(2*x)}
示例 #2:
# import sympy
from sympy import *
x, y = symbols('x y')
f = Function('f')
# Use sympy.Function() method
gfg = (2 + 3 * cos(y) + 5 * log(2 * x)).atoms(Function)
print(gfg)
输出 :
{cos(y), log(2*x)}