delay.plt

来自「gnuplot画图相关的loadfile」· PLT 代码 · 共 32 行

PLT
32
字号
# Gnuplot script file for plotting data# This file is called   delay.plt#edited by lidson 2009-3-3set   autoscale                    # scale axes automaticallyunset log                          # remove any log-scalingunset label                        # remove any previous labels#unset keyunset xticsset xr  [1:500]                   #set xrangeset yr  [0:10]                   #set yrangeset xtic auto                      # set xtics automaticallyset ytic auto                      # set ytics automaticallyset xlabel "pkts/s"set ylabel "delay/s"set key  500,5.8#set title "delay with different pkt arrival rates"#  set label "Yield Point" at 0.003,260#  set arrow from 0.0028,250 to 0.003,280#设定x轴为对数标称set logscale x#plot the data to the gnuplot terminal screenplot 'delay_AODV'  w lp lt -1 lw 2 pt 1 ps 2 ,'delay_DSDV'  w lp lt -1 lw 2 pt 2 ps 2 ,'delay_DSR'  w lp lt -1 lw 2 pt 3 ps 2 set term   jpeg   font "/usr/share/fonts/truetype/arphic/ukai.ttc,20"set output "/yourpath/delay_nodes.jpg"replot

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?