在Python 3中绘制隐式方程

时间:2017-01-12 23:02:54

标签: python matplotlib curves

我需要在Python3中绘制一些曲线(我很习惯于matplotlib.pyplot)但我以前从未画过这些东西,我真的很感激一些提示(特别提示如何在“整洁”中编写代码)方式)和帮助。

有一个例子(让我们用一颗心!):

x^2+(5y/4-sqrt[|x|])^2=1  

我如何编码这样的东西?我应该将该公式切割成正常区域然后绘制它们吗?

1 个答案:

答案 0 :(得分:6)

根据你想要绘制隐式函数的等式,你应该使用考虑F = x^2G = 1-(5y/4-sqrt[|x|])^2的轮廓,然后F-G = 0

import matplotlib.pyplot as plt
import numpy as np

delta = 0.025
xrange = np.arange(-2, 2, delta)
yrange = np.arange(-2, 2, delta)
X, Y = np.meshgrid(xrange,yrange)

# F is one side of the equation, G is the other
F = X**2
G = 1- (5*Y/4 - np.sqrt(np.abs(X)))**2
plt.contour((F - G), [0])
plt.show()

输出: enter image description here