我正在使用 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,但在这种情况下我也会遇到一些错误。