如何使用第一行和第一列作为 xy 坐标在 Gnuplot 中使用 splot 绘制 3D 矩阵 CSV 数据?
如何在具有此类数据结构的 Gnuplot 中绘制(3D 图)矩阵。我找不到使用第一行和第一列作为 ax 和 y 刻度(或忽略它们)的方法
,5,6,7,8
1,-6.20,-6.35,-6.59,-6.02
2,-6.39,-6.52,-6.31,-6.00
3,-6.36,-6.48,-6.15,-5.90
4,-5.79,-5.91,-5.87,-5.46
splot 'data.csv' 矩阵
是要使用的正确参数吗?
How can I plot (a 3D plot) a matrix in Gnuplot having such data structure. I cannot find a way to use the first row and column as a x and y ticks (or to ignore them)
,5,6,7,8
1,-6.20,-6.35,-6.59,-6.02
2,-6.39,-6.52,-6.31,-6.00
3,-6.36,-6.48,-6.15,-5.90
4,-5.79,-5.91,-5.87,-5.46
Is the splot 'data.csv' matrix
the correct parameter to use ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用格式规范给出;这里我们需要告诉分隔符','。以下对我有用:
除了第一行被忽略,这可能是正确的?
You can give using a format specification; here we need to tell the seperator ','. The following works for me:
except that the first line is ignored, which is probably right?