gnuplot.dem

来自「硬盘速度测试 linux下 源码 c/c」· DEM 代码 · 共 61 行

DEM
61
字号
## $Id: Plot of latency versus offset in a file## Requires data file "wol.dat" from this directory,# so change current working directory to this directory before running.#set title "File system write latency "set autoscale xset xticsset xlabel "Offset in file (KB)"set ylabel "Latency in Microseconds"plot 'wol.dat' using 1:2 title "Latency Plot" with linespause -1 "Hit return to continue"## $Id: Plot of latency versus offset in a file## Requires data file "rwol.dat" from this directory,# so change current working directory to this directory before running.#set title "File system re-write latency "set autoscale xset xticsset xlabel "Offset in file (KB)"set ylabel "Latency in Microseconds"plot 'rwol.dat' using 1:2 title "Latency Plot" with linespause -1 "Hit return to continue"## $Id: Plot of latency versus offset in a file## Requires data file "rol.dat" from this directory,# so change current working directory to this directory before running.#set title "File system read latency "set autoscale xset xticsset xlabel "Offset in file (KB)"set ylabel "Latency in Microseconds"plot 'rol.dat' using 1:2 title "Latency Plot" with linespause -1 "Hit return to continue"## $Id: Plot of latency versus offset in a file## Requires data file "rrol.dat" from this directory,# so change current working directory to this directory before running.#set title "File system re-read latency "set autoscale xset xticsset xlabel "Offset in file (KB)"set ylabel "Latency in Microseconds"plot 'rrol.dat' using 1:2 title "Latency Plot" with linespause -1 "Hit return to continue"

⌨️ 快捷键说明

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