使用数据文件在 mathgl 中创建 3D 球体散点图
我正在尝试使用以下格式的数据文件创建带有球体的 3d 散点图:
XYZ val \n 0 0 0 1 \n 0 0 1 0 \n 0 0 2 0 \n 0 0 3 0 \n 。 。 。
我可以阅读该文件,但我似乎找不到任何如何使用矩阵绘制一组球体的位置
(我的目标是获得类似 this)
PS
如果你们中有人知道如何使用 gnuplot 或任何其他命令行/脚本文件工具获得相同的绘图,我会很高兴。
I'm trying to create a 3d scatter plot with spheres using a data file of the format:
X Y Z val \n
0 0 0 1 \n
0 0 1 0 \n
0 0 2 0 \n
0 0 3 0 \n
.
.
.
I can read the file but I can't seem to find any where how to plot a set of spheres using matrix
(my goal is to get something like this)
P.S.
If any of you know how to get the same plot using gnuplot or any other command line/script file tool I'll be happy.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需在循环中绘制球体即可。
Just draw spheres in the cycle.