Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Sympy 使用 Subs 函数将一组表达式替换为另一个表达式,并且我希望程序不要重新排列或简化方程。即如果我x+y代替ain
x+y
a
a+b+c+a返回x+y+b+c+x+y
a+b+c+a
x+y+b+c+x+y
有谁知道执行此操作的方法?
非常感谢
做到这一点的唯一方法是做Add(x, y, b, c, x, y, evaluate=False),不幸的是,这不是很容易使用。
Add(x, y, b, c, x, y, evaluate=False)