gnuplot script.

This commit is contained in:
Andrey Smirnov
2014-03-03 20:59:37 +04:00
parent d0c3659679
commit 073374eb78

6
mem.gp Normal file
View File

@@ -0,0 +1,6 @@
set output 'mem.png'
set term png
set key box left
set xlabel "Time (msec)"
set ylabel "Mem (MB)"
plot "mem.dat" using 1:($2/1e6) title 'HeapSys' with lines, "mem.dat" using 1:($3/1e6) title 'HeapAlloc' with lines, "mem.dat" using 1:($4/1e6) title 'HeapIdle' with lines