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


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


借助sympy.replace()方法,我们可以替换数学表达式中的函数,而无需使用来编辑整个表达式sympy.replace()方法。

用法: sympy.replace()
返回:Return the replaced values in the mathematical expression.

范例1:
在这个例子中,我们可以通过使用sympy.replace()方法,我们可以替换表达式中的数学函数并返回更新后的表达式。


# import sympy 
from sympy import * 
  
x, y = symbols('x y') 
  
f = sin(x) + cos(2 * x) 
  
# Use sympy.replace() method 
gfg = f.replace(cos, sin) 
     
print(gfg)

输出:

sin(x) + sin(2*x)

范例2:

# import sympy 
from sympy import * 
  
x, y = symbols('x y') 
  
f = log(sin(x)) + tan(cos(2 * x)) 
# Use sympy.replace() method 
gfg = f.replace(log, tan) 
     
print(gfg)

输出:

tan(sin(x)) + tan(cos(2*x))



相关用法


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