使用python输出Sympy乳胶
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用python输出Sympy乳胶相关的知识,希望对你有一定的参考价值。
我试图使用以下python代码
解决了(由@TheFool提示):通过将latex()放入打印功能,它可以工作。
from sympy import *
from sympy.printing.mathml import mathml
init_printing(use_unicode=True) # allow LaTeX printing
# independent variables
x, y, z = symbols('x y z', real = True)
# parameters
nu, rho = symbols('nu rho', real = True, constant = True, positive = True)
# dependent variables
u, v, w = symbols('u v w', real = True, cls = Function)
print(latex(diff(u(x,y,z),x)))
输出看起来像'\frac{\partial}{\partial x} u{\left (x,y,z \right )}'
。
如何在输出的开头和结尾删除附加的反斜杠和引号?
答案
你试过包括:..?
from sympy import init_printing
init_printing()
查看sympy的打印选项。看起来init_printing是获得正确输出的方法。
http://docs.sympy.org/latest/tutorial/printing.html
以上是关于使用python输出Sympy乳胶的主要内容,如果未能解决你的问题,请参考以下文章