如何用 SymPy 绘制笛卡尔方程?
How to plot a cartesian equation with SymPy?
如何用 SymPy 绘制笛卡尔方程?
例如如何绘制
x*(x+y) + 2*x^3 + x^4 + y^4 == 0
使用sympy.plotting.plot_implicit.plot_implicit
:
from sympy import *
x, y = symbols("x, y")
plot_implicit(x * (x + y) + 2 * x**3 + x**4 + y**4)
如何用 SymPy 绘制笛卡尔方程? 例如如何绘制
x*(x+y) + 2*x^3 + x^4 + y^4 == 0
使用sympy.plotting.plot_implicit.plot_implicit
:
from sympy import *
x, y = symbols("x, y")
plot_implicit(x * (x + y) + 2 * x**3 + x**4 + y**4)