如何在同一张图上绘制带有图像和一些水平线(无头部箭头)的数据文件矩阵?我已经尝试过此代码:
set arrow 2 nohead from 0,50, graph 0 to 200,50, graph 1 front lc "black"
set arrow 2 nohead from 0,200, graph 1 to 200,200, graph 2 front lc "black"
plot 'data.txt' matrix w image
但只显示一行。
答案1
后面的数字set arrow
标识箭头,以便以后更改,并且必须是唯一的。您可以使用相同的标签号用第二个箭头覆盖第一个箭头。您可以简单地省略它:
set arrow nohead from 0,50 to 200,50 front lc "black"
set arrow nohead from 0,200 to 200,200 front lc "black"
plot 'data.txt' matrix w image
您的坐标定义也是错误的。您必须仅指定两个值,而不是三个plot
。并且graph
坐标系通常仅对 0..1 范围有意义