Gnuplot:如何绘制45度线?

时间:2017-06-01 14:27:23

标签: gnuplot

我想绘制两年不同年份的数据并插入45度线,以便您可以轻松查看该值是增加还是减少。 X轴和Y轴将从0到1。

提前感谢您的帮助,非常感谢!

1 个答案:

答案 0 :(得分:0)

如Thor所说,只需使用plot x即可绘制45度。

有关更一般的解决方案,可以使用tan

例如,绘制从0度到85度的所有线条

set angles degrees
set xrange [0:1]
set yrange [0:1]
plot x*tan(0), x*tan(5), x*tan(10), x*tan(15), x*tan(20), x*tan(25), x*tan(30), x*tan(35), x*tan(40), x*tan(45), x*tan(50), x*tan(55), x*tan(60), x*tan(65), x*tan(70), x*tan(75), x*tan(80), x*tan(85)

enter image description here