Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用以下格式的数据文件创建带有球体的 3d 散点图:
XYZ 值 \n 0 0 0 1 \n 0 0 1 0 \n 0 0 2 0 \n 0 0 3 0 \n 。. .
我可以阅读该文件,但似乎找不到任何如何使用矩阵绘制一组球体的地方
(我的目标是得到这样的东西)
附言
如果你们中的任何人知道如何使用 gnuplot 或任何其他命令行/脚本文件工具获得相同的绘图,我会很高兴。
只需在循环中绘制球体。
for(long i=0;i<n;i++) gr->Sphere(mglPoint(x[i],y[i],z[i]),r[i]);