GNUplot:如何使绘图不闭合?

GNUplot:如何使绘图不闭合?,gnuplot,Gnuplot,我从gnuplot中的一个文件中绘制绘图,如下所示: plot "plots.txt" using 1:2 with lines lw 2 7.4500 18.5567 7.4578 21.5392 7.4656 25.2265 7.4734 29.8230 7.4812 35.5910 7.4890 42.8468 .... .... 7.4500 18.5567 7.4578 21.5392 7.4656 25.2265 7.4734 29.8230 7.4812

我从gnuplot中的一个文件中绘制绘图,如下所示:

plot "plots.txt" using 1:2 with lines lw 2
7.4500  18.5567
7.4578  21.5392
7.4656  25.2265
7.4734  29.8230
7.4812  35.5910
7.4890  42.8468
....    ....
7.4500  18.5567
7.4578  21.5392
7.4656  25.2265
7.4734  29.8230
7.4812  35.5910
7.4890  42.8468
....    ....
我得到了这样的结果:

plot "plots.txt" using 1:2 with lines lw 2
7.4500  18.5567
7.4578  21.5392
7.4656  25.2265
7.4734  29.8230
7.4812  35.5910
7.4890  42.8468
....    ....
7.4500  18.5567
7.4578  21.5392
7.4656  25.2265
7.4734  29.8230
7.4812  35.5910
7.4890  42.8468
....    ....

如果没有连接最左侧点和最右侧点的线,我如何在不封闭的情况下绘制绘图?谢谢大家!

噢,我刚刚发现出了什么问题。结果,我的文件的数据循环如下:

plot "plots.txt" using 1:2 with lines lw 2
7.4500  18.5567
7.4578  21.5392
7.4656  25.2265
7.4734  29.8230
7.4812  35.5910
7.4890  42.8468
....    ....
7.4500  18.5567
7.4578  21.5392
7.4656  25.2265
7.4734  29.8230
7.4812  35.5910
7.4890  42.8468
....    ....

陛下它刚刚开始在我的另一个程序中工作。现在我希望它不会回到过去的样子。谁都知道,这是什么问题?这是你的数据文件,但没有看到它,我不能告诉你more@Cristoph,谢谢你,我刚刚发现,出了什么问题!