nebulous-performance-analysis: template.gnuplot
| File template.gnuplot, 370 bytes (added by , 15 years ago) |
|---|
| Line | |
|---|---|
| 1 | # Template for gnuplot. All arguments are strings |
| 2 | # 0 = file base name |
| 3 | # 1 = xlabel |
| 4 | # 2 = ylabel |
| 5 | # 3 = <extra set instructions...> |
| 6 | # 4 = field #/function for x axis |
| 7 | # 5 = field #/function for y axis |
| 8 | # 6 = title |
| 9 | mega(x) = x /1000000 |
| 10 | kilo(x) = x /1000 |
| 11 | set terminal jpeg |
| 12 | set output 'total_%s.jpg' |
| 13 | set xlabel '%s' |
| 14 | set ylabel '%s' |
| 15 | %s |
| 16 | plot '../results' using %s:%s title '%s' |
