Mercurial > hg > Papers > 2013 > nobuyasu-jssst
diff Paper/gnuplot/makegraph.sh @ 15:ac82fd7e1ea1
added makegraph.sh
author | Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 18 Jul 2013 07:11:43 +0900 |
parents | |
children | fa37607c0c1c |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Paper/gnuplot/makegraph.sh Thu Jul 18 07:11:43 2013 +0900 @@ -0,0 +1,11 @@ +#!/bin/sh +#plot 'hoge.csv' using '%lf,%lf' +#set xrange[0:45] +gnuplot << EOF +set terminal postscript eps +set output 'graph.eps' +set title 'title' +set xlabel 'nuber of nodes' +set ylabel 'avarage time' +plot 'test.dat' using 1:2 with linespoints, 'test2.dat' using 1:2 with linespoints +EOF