当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python sympy.Function()用法及代码示例


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

用法: sympy.Function()
返回: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)}



相关用法


注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Python | sympy.Function() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。