我尝试将gnuplot环境命令和数据绘图命令分开。 gnuplot脚本是:
set terminal postscript eps enhanced color
set output "/out.eps"
set size 0.80,0.80
...
...
load 'path/to/plot_command.txt
其中plot_command.txt
具有以下命令:
plot '< tail -7 /Data2.stat' using 1:2 title "Data2" with lp lw 4, \
'< tail -7 /Data3.stat' using 1:2 title "alnmindrepl07" with lp lw 4, \
....................................
但是,我收到以下错误:
plot'&lt; tail -7 /Data2.stat'使用1:2标题“Data2”和lp lw 4,
^
“/plot_command.txt”,第2行:绘制预期的函数
有什么建议吗?
答案 0 :(得分:1)
你不应该在plot_command.txt第二行的末尾有一个“,”。逗号表示将有另一个(第三个)函数,因此错误。 试试这个:
plot '< tail -7 /Data2.stat' using 1:2 title "Data2" with lp lw 4, \
'< tail -7 /Data3.stat' using 1:2 title "alnmindrepl07" with lp lw 4