gnuplotps.dem

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

DEM
64
字号
## $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 terminal postscriptset output "gnu_wol.ps"set autoscale xset xticsset xlabel "Offset in file (KB)"set ylabel "Latency in Microseconds"plot 'wol.dat' using 1:2 title "Latency Plot" with lines## $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 terminal postscriptset output "gnu_rwol.ps"set autoscale xset xticsset xlabel "Offset in file (KB)"set ylabel "Latency in Microseconds"plot 'rwol.dat' using 1:2 title "Latency Plot" with lines## $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"set terminal postscriptset output "gnu_rol.ps"plot 'rol.dat' using 1:2 title "Latency Plot" with lines## $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 terminal postscriptset output "gnu_rrol.ps"set autoscale xset xticsset xlabel "Offset in file (KB)"set ylabel "Latency in Microseconds"plot 'rrol.dat' using 1:2 title "Latency Plot" with lines

⌨️ 快捷键说明

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