使用数据文件在 mathgl 中创建 3D 球体散点图

发布于 2024-10-20 13:07:46 字数 351 浏览 1 评论 0原文

我正在尝试使用以下格式的数据文件创建带有球体的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

删除会话 2024-10-27 13:07:46

只需在循环中绘制球体即可。

for(long i=0;i<n;i++)
  gr->Sphere(mglPoint(x[i],y[i],z[i]),r[i]);

Just draw spheres in the cycle.

for(long i=0;i<n;i++)
  gr->Sphere(mglPoint(x[i],y[i],z[i]),r[i]);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文