使用 Matplotlib 或 Octave 从文本文件中绘制 3D 点
您好,我有一个包含三列数字的文本文件;每列代表一堆点的 x、y、z 坐标。所有数字都在 0 和 1 之间。
我想在单位立方体 [0,1]x[0,1]x[0,1] 中绘制所有这些点。
请告诉我如何在 Octave 或 MatPlot lib 中执行此操作,以产生更好质量的图像为准。
Hi I have a text file containing three columns of numbers; one column each for the x,y,z coordinates of a bunch of points. All numbers are between 0 ad 1.
I want to plot all these points in the unit cube [0,1]x[0,1]x[0,1].
Please let me know how I can do this in Octave or MatPlot lib, whichever prduces a better quality image.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我正确理解你的问题,这就是它在 Matplotlib 中的样子:
这是生成此图的代码:
正如代码所示,matplotlib 版本 0.99.1.1 和版本 1.0.1 的行为方式存在细微差别,如本 所以问题/答案。我使用的是 0.99.1.1,并且在使用 2D 散点图可用的所有选项时遇到了麻烦,这对于 3D 绘图也应该是相同的。 此处列出了分散功能的完整列表。
上面的代码是通过查看 matplotlib 教程 关于 3D 绘图。
If I understand your question correctly, this is how it looks in Matplotlib:
This is the code to produce this plot:
As the code suggests, there are slight differences in how matplotlib version 0.99.1.1 and version 1.0.1 behave, as noted in this SO question/answer. I am using 0.99.1.1, and I had trouble using all the options available to 2D
scatter
plots, which should be the same for 3D plots as well. The full list of scatter features are listed here.The above code resulted from looking at the matplotlib tutorial on 3D plotting.