view vs_go/graph.sh @ 22:4083f77dec87 default tip

Fix
author Tatsuki IHA <innparusu@cr.ie.u-ryukyu.ac.jp>
date Wed, 07 Feb 2018 19:06:42 +0900
parents 55b4adc8b873
children
line wrap: on
line source

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