本文介绍了如何在gnuplot中绘制一组垂直线?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
例如如果我有一张图,并且想在X轴上每10个单位添加一条垂直线.
E.g. if I have a graph and want to add vertical lines at every 10 units along the X-axis.
推荐答案
下面是我的perl脚本中的代码片段:
Here is a snippet from my perl script to do this:
print OUTPUT "set arrow from $x1,$y1 to $x1,$y2 nohead lc rgb \'red\'\n";
您可能会从上方猜测,它实际上是绘制为无头"箭头.
As you might guess from above, it's actually drawn as a "headless" arrow.
这篇关于如何在gnuplot中绘制一组垂直线?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!