📜  Python|同情。函数()方法

📅  最后修改于: 2022-05-13 01:55:42.767000             🧑  作者: Mango

Python|同情。函数()方法

借助sympy.Function()方法,我们可以使用sympy.Function() () 方法找到整个数学表达式中的各种函数,如 f(x)、sin(x)、log(x) 等。

示例 #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)

输出 :

示例 #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)

输出 :