我在尝试向图像图中添加线条时遇到了麻烦。以下是说明该问题的示例
plot 'xyz.dat' using image
set arrow 0,0 to 1,1 nohead
replot
但没有出现任何线条。是否可以在图像图中添加线条?
答案1
您需要将其放在arrow
图像前面:
set arrow front from 0,0 to 1,1 nohead
plot 'xyz.dat' with image
我在尝试向图像图中添加线条时遇到了麻烦。以下是说明该问题的示例
plot 'xyz.dat' using image
set arrow 0,0 to 1,1 nohead
replot
但没有出现任何线条。是否可以在图像图中添加线条?
您需要将其放在arrow
图像前面:
set arrow front from 0,0 to 1,1 nohead
plot 'xyz.dat' with image