借助sympy.as_independent()
方法,我们可以通过作为参数传递给sympy.as_independent()
方法。
用法: sympy.as_independent(variable)
返回:返回一个在数学表达式中具有独立变量的元组。
范例1:
在这个例子中,我们可以通过使用sympy.as_independent()
方法,我们能够基于作为参数传递的自变量来分离数学函数。
# import sympy
from sympy import *
x, y = symbols('x y')
# Use sympy.as_independent(variable) method
gfg = (1 + 2 * x + 1 / x).as_independent(x)
print(gfg)
输出:
(1, 2*x + 1/x)
范例2:
# import sympy
from sympy import *
x, y = symbols('x y')
# Use sympy.as_independent(variable) method
gfg = (1 / y**2 + x).as_independent(y)
print(gfg)
输出:
(x, y**(-2))
相关用法
- 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.as_independent() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。