.dat 中只有 1 列,X 和 Y 是常量,如何使用 Gnuplot 绘制 3D 绘图
想要绘制 3D 绘图。 X和Y都是从1-200,即200*200,.dat中有40000个数字,只有1列。 我是否需要将数据文件更改为官方 3D 格式,例如:
1 1 z1
1 2 z2
...
1 200 z200
2 1 z201
2 2 z202
...
2 200 z400
...
...
200 200 z40000
非常感谢。
Want to draw a 3D-plot.
X and Y are both from 1-200, namely 200*200, 40000 numbers in .dat, only 1 column.
Do I need to change the data file to the official 3D format, like:
1 1 z1
1 2 z2
...
1 200 z200
2 1 z201
2 2 z202
...
2 200 z400
...
...
200 200 z40000
Thanks a lot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的数据如下所示:
那么您可以使用
every
来仅访问您想要绘制的轴。然而,一种更干净的方法是输出上面提到的数据。If your data is represented like so:
then you could use
every
to access only the axis you want to plot. However, a much cleaner way would be to output the data as you mentioned above.