view vs_go/graph.sh @ 6:ede33c066191

Move files
author Tatsuki IHA <innparusu@cr.ie.u-ryukyu.ac.jp>
date Sat, 03 Feb 2018 16:37:09 +0900
parents twice/graph.sh@63f0e9bb4a7a
children 55b4adc8b873
line wrap: on
line source

#!/bin/sh
gnuplot << EOF
set title "twice"
set terminal svg
plot "gears_dalmore" with l lc rgbcolor "blue"
set output "output.svg"
set xlabel "CPUs"
set xrange[1:32]
set ylabel "time(ms)"
replot "go_dalmore" with l lc rgbcolor "red"
EOF