在 matplotlib 中绘制(隐式)方程组
首先,我是 python 和 matplotlib 的新手。我需要在一张图中绘制几个隐式方程组。
这些方程的形式为:
3x+2y=1
除了首先使方程显式(即y=...
)之外,是否有一种简单的方法来绘制这些方程?
First off, I'm new to python and matplotlib. I need to plot several systems of implicit equations in one figure.
The equations are in form of:
3x+2y=1
Is there an easy way to plot these, other than first making the equations explicit (i.e. y=...
)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
contour()
在两个空间维度上进行隐式绘图:在 3 个维度中,我建议使用 Mayavi 而不是 matplotlib。
You can use
contour()
to do implicit plots in two space dimensions:In 3 dimensions, I suggest using Mayavi instead of matplotlib.