借助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)}
相关用法
- Python next()用法及代码示例
- Python set()用法及代码示例
- Python os.dup()用法及代码示例
- Python os.getpgrp()用法及代码示例
- Python os.getcwdb()用法及代码示例
- Python os.nice()用法及代码示例
- Python os.access()用法及代码示例
- Python os.fork()用法及代码示例
- Python os.chdir()用法及代码示例
- Python PIL UnsahrpMask()用法及代码示例
- Python os.fsencode()用法及代码示例
- Python PIL GaussianBlur()用法及代码示例
- Python sympy.Mod()用法及代码示例
- Python os.system()用法及代码示例
注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Python | sympy.Function() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。