开发者

Python: How to export Sympy image to png? [closed]

开发者 https://www.devze.com 2023-01-20 13:42 出处:网络
It's difficult t开发者_如何学Co tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical andcannot be reasonably answered in its current form.
It's difficult t开发者_如何学Co tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 12 years ago.

Python: How to export Sympy image to png?

Who has any idea with this?


Use the saveimage method:

import sympy
x, y, z = sympy.symbols('xyz')
p = sympy.Plot(x * y ** 3 - y * x ** 3)
p.saveimage('/tmp/plot.png', format='png')
0

精彩评论

暂无评论...
验证码 换一张
取 消