我有一个具有以下结构的文件 VERTICAL.txt:
201
269
614
669
705
使用脚本 traffic.gp :
set terminal jpeg size 1024,768
set title "traffic path 0"
set xlabel "Simulation duration"
set ylabel "Link load (%)"
set grid
set xtics 0,50,1100
set ytics 0.0,10.0,100.0
set key below center
plot [0:1100] [0.0:100.0] 'traffic_path0.txt' with lines title "path 0"
我想在 traffic.gp 中使用 VERTICAL.txt 来查看相应的行。
我试图添加:
set parametrics
set trange [0:100]
plot VERTICAL.txt , t
但出现以下错误:"scripts/traffic.gp", line 11: parametric function not fully specified
我怎么能做到这一点?非常感谢