diff twice/graph.sh @ 0:63f0e9bb4a7a

init commit
author Tatsuki IHA <innparusu@cr.ie.u-ryukyu.ac.jp>
date Tue, 30 Jan 2018 17:59:44 +0900
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/twice/graph.sh	Tue Jan 30 17:59:44 2018 +0900
@@ -0,0 +1,11 @@
+#!/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