我使用的gnuplot繪製了許多列的文件:gnuplot的操作,而迭代
plot for [i=2:119] "./file.dat" using 1:i w l lt 9
它工作正常,但我不能爲了打印線轉移到編輯。 我想打印本,其中N是一個偏移值
plot for [i=2:119] "./file.dat" using 1:$i+N w l lt 9
,但我收到錯誤(與^在$):
gnuplot> plot for [i=2:119] "./file.dat" using 1:$i+1 w l lt 9
"./file.plt", line 182: Column number expected
一個解決方法是使用AWK,但在這種情況下,我有一些錯誤。