view Paper/gnuplot/makegraph.sh @ 55:307c87617e62 default tip

add slide
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Wed, 11 Sep 2013 10:21:42 +0900
parents fa37607c0c1c
children
line wrap: on
line source

#!/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 lt rgb "red" with linespoints, 'test2.dat' using 1:2  lt rgb "blue" with linespoints
EOF